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