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