public enum MethodNameDisplayMode extends Enum<MethodNameDisplayMode>
Enum Constant and Description |
---|
ABBREVIATED |
FULL |
NONE |
ONLY_METHOD_NAME |
Modifier and Type | Method and Description |
---|---|
static MethodNameDisplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodNameDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodNameDisplayMode NONE
public static final MethodNameDisplayMode ONLY_METHOD_NAME
public static final MethodNameDisplayMode ABBREVIATED
public static final MethodNameDisplayMode FULL
public static MethodNameDisplayMode[] values()
for (MethodNameDisplayMode c : MethodNameDisplayMode.values()) System.out.println(c);
public static MethodNameDisplayMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null