public enum PropertyFormType extends Enum<PropertyFormType>
Enum Constant and Description |
---|
BOOLEAN |
COLOR |
COMBO |
NATURAL_NUMBER |
SECRET_TEXT |
TEXT |
Modifier and Type | Method and Description |
---|---|
abstract Object |
fromString(String stringValue) |
abstract String |
toString(Object realValue) |
static PropertyFormType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyFormType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyFormType TEXT
public static final PropertyFormType BOOLEAN
public static final PropertyFormType NATURAL_NUMBER
public static final PropertyFormType SECRET_TEXT
public static final PropertyFormType COLOR
public static final PropertyFormType COMBO
public static PropertyFormType[] values()
for (PropertyFormType c : PropertyFormType.values()) System.out.println(c);
public static PropertyFormType 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 © 2012–2019 JBoss by Red Hat. All rights reserved.