public enum ExecutableType extends Enum<ExecutableType>
| Enum Constant and Description |
|---|
ALL |
CONSTRUCTORS |
GETTER_METHODS |
IMPLICIT |
NON_GETTER_METHODS |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ExecutableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutableType IMPLICIT
public static final ExecutableType NONE
public static final ExecutableType CONSTRUCTORS
public static final ExecutableType NON_GETTER_METHODS
public static final ExecutableType GETTER_METHODS
public static final ExecutableType ALL
public static ExecutableType[] values()
for (ExecutableType c : ExecutableType.values()) System.out.println(c);
public static ExecutableType 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 © 2017. All rights reserved.