public static enum Constants.Type extends java.lang.Enum<Constants.Type>
Enum Constant and Description |
---|
BOOLEAN |
DURATION |
FLOAT |
HEX |
INTEGER |
STRING |
UUID |
Modifier and Type | Method and Description |
---|---|
static Constants.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Type STRING
public static final Constants.Type INTEGER
public static final Constants.Type UUID
public static final Constants.Type FLOAT
public static final Constants.Type BOOLEAN
public static final Constants.Type HEX
public static final Constants.Type DURATION
public static Constants.Type[] values()
for (Constants.Type c : Constants.Type.values()) System.out.println(c);
public static Constants.Type 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 nullCopyright © 2020 The Apache Software Foundation