public enum ColTypeEnum extends Enum<ColTypeEnum>
| Enum Constant and Description |
|---|
dts_1 |
dts_2 |
dts_3 |
dts_4 |
dts_5 |
int_1 |
int_2 |
int_3 |
int_4 |
int_5 |
str_1 |
str_2 |
str_3 |
str_4 |
str_5 |
| Modifier and Type | Method and Description |
|---|---|
static ColTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColTypeEnum str_1
public static final ColTypeEnum str_2
public static final ColTypeEnum str_3
public static final ColTypeEnum str_4
public static final ColTypeEnum str_5
public static final ColTypeEnum int_1
public static final ColTypeEnum int_2
public static final ColTypeEnum int_3
public static final ColTypeEnum int_4
public static final ColTypeEnum int_5
public static final ColTypeEnum dts_1
public static final ColTypeEnum dts_2
public static final ColTypeEnum dts_3
public static final ColTypeEnum dts_4
public static final ColTypeEnum dts_5
public static ColTypeEnum[] values()
for (ColTypeEnum c : ColTypeEnum.values()) System.out.println(c);
public static ColTypeEnum 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. All rights reserved.