public static enum Method.Visibility extends java.lang.Enum<Method.Visibility>
Enum Constant and Description |
---|
HiddenBridge |
HiddenDeadCode |
HiddenSynthetic |
Visible |
Modifier and Type | Method and Description |
---|---|
static Method.Visibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Method.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Method.Visibility Visible
public static final Method.Visibility HiddenSynthetic
public static final Method.Visibility HiddenBridge
public static final Method.Visibility HiddenDeadCode
public static Method.Visibility[] values()
for (Method.Visibility c : Method.Visibility.values()) System.out.println(c);
public static Method.Visibility 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