@InterfaceAudience.Private public enum FieldValueType extends Enum<FieldValueType>
FieldValue
.Enum Constant and Description |
---|
FLOAT |
INTEGER |
LONG |
PERCENT |
SIZE |
STRING |
Modifier and Type | Method and Description |
---|---|
static FieldValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldValueType STRING
public static final FieldValueType INTEGER
public static final FieldValueType LONG
public static final FieldValueType FLOAT
public static final FieldValueType SIZE
public static final FieldValueType PERCENT
public static FieldValueType[] values()
for (FieldValueType c : FieldValueType.values()) System.out.println(c);
public static FieldValueType 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 © 2007–2020 The Apache Software Foundation. All rights reserved.