public enum MethodNameDisplayMode extends java.lang.Enum<MethodNameDisplayMode>
| Enum Constant and Description |
|---|
ABBREVIATED |
FULL |
NONE |
ONLY_METHOD_NAME |
| Modifier and Type | Method and Description |
|---|---|
static MethodNameDisplayMode |
valueOf(java.lang.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(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