public enum AccessLevel extends java.lang.Enum<AccessLevel>
| Enum Constant and Description |
|---|
PACKAGE
package private
|
PROTECTED
protected |
PUBLIC
public |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getModifier() |
static AccessLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessLevel PUBLIC
publicpublic static final AccessLevel PROTECTED
protectedpublic static final AccessLevel PACKAGE
public static AccessLevel[] values()
for (AccessLevel c : AccessLevel.values()) System.out.println(c);
public static AccessLevel 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 nullpublic java.lang.String getModifier()