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