public enum ProtectionLevel extends java.lang.Enum<ProtectionLevel>
Enum Constant and Description |
---|
Protected
This package is protected from being deleted.
|
Unprotected
This package is not protected and can be deleted.
|
Modifier and Type | Method and Description |
---|---|
static ProtectionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProtectionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProtectionLevel Protected
public static final ProtectionLevel Unprotected
public static ProtectionLevel[] values()
for (ProtectionLevel c : ProtectionLevel.values()) System.out.println(c);
public static ProtectionLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null