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