public static enum TheSameAs.PropertyType extends Enum<TheSameAs.PropertyType>
| Enum Constant and Description |
|---|
ALL_GETTERS
Check all getter style properties i.e.
|
BEAN
Check properties which follow the Java beans standard i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static TheSameAs.PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TheSameAs.PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TheSameAs.PropertyType BEAN
public static final TheSameAs.PropertyType ALL_GETTERS
public static TheSameAs.PropertyType[] values()
for (TheSameAs.PropertyType c : TheSameAs.PropertyType.values()) System.out.println(c);
public static TheSameAs.PropertyType 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 © 2015. All rights reserved.