public static enum OptionMethodNameDisplayMode.Mode extends Enum<OptionMethodNameDisplayMode.Mode>
Enum Constant and Description |
---|
ABBREVIATED
Use the class and method name as displayName.
|
FULL
Use the full qualified class and method name as displayName.
|
NONE
Emit no extra information.
|
ONLY_METHOD_NAME
Use the method name as displayName.
|
Modifier and Type | Method and Description |
---|---|
static OptionMethodNameDisplayMode.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionMethodNameDisplayMode.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionMethodNameDisplayMode.Mode NONE
public static final OptionMethodNameDisplayMode.Mode ONLY_METHOD_NAME
public static final OptionMethodNameDisplayMode.Mode ABBREVIATED
public static final OptionMethodNameDisplayMode.Mode FULL
public static OptionMethodNameDisplayMode.Mode[] values()
for (OptionMethodNameDisplayMode.Mode c : OptionMethodNameDisplayMode.Mode.values()) System.out.println(c);
public static OptionMethodNameDisplayMode.Mode 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 nullCopyright © 2018. All rights reserved.