public enum AccessChange extends java.lang.Enum<AccessChange>
| Enum Constant and Description |
|---|
NONE |
PACKAGE_PRIVATE |
PRIVATE |
PROTECTED |
PUBLIC |
| Modifier and Type | Method and Description |
|---|---|
int |
getModifier() |
AccessChange |
merge(AccessChange other) |
static AccessChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessChange NONE
public static final AccessChange PRIVATE
public static final AccessChange PACKAGE_PRIVATE
public static final AccessChange PROTECTED
public static final AccessChange PUBLIC
public static AccessChange[] values()
for (AccessChange c : AccessChange.values()) System.out.println(c);
public static AccessChange 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 int getModifier()
public AccessChange merge(AccessChange other)