public enum FlagValueType extends Enum<FlagValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
INTEGER |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static FlagValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlagValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagValueType STRING
public static final FlagValueType INTEGER
public static final FlagValueType DOUBLE
public static final FlagValueType OBJECT
public static final FlagValueType BOOLEAN
public static FlagValueType[] values()
for (FlagValueType c : FlagValueType.values()) System.out.println(c);
public static FlagValueType 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 © 2023. All rights reserved.