Enum Column.Type
- java.lang.Object
-
- java.lang.Enum<Column.Type>
-
- risesoft.data.transfer.core.column.Column.Type
-
- All Implemented Interfaces:
Serializable,Comparable<Column.Type>
- Enclosing class:
- Column
public static enum Column.Type extends Enum<Column.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Column.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Column.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BAD
public static final Column.Type BAD
-
NULL
public static final Column.Type NULL
-
INT
public static final Column.Type INT
-
LONG
public static final Column.Type LONG
-
DOUBLE
public static final Column.Type DOUBLE
-
STRING
public static final Column.Type STRING
-
BOOL
public static final Column.Type BOOL
-
DATE
public static final Column.Type DATE
-
BYTES
public static final Column.Type BYTES
-
STREAM
public static final Column.Type STREAM
-
-
Method Detail
-
values
public static Column.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Column.Type c : Column.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Column.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-