public static enum FTYPE.Common extends Enum<FTYPE.Common>
| Enum Constant and Description |
|---|
COALESCE |
ENCLOSE |
STR |
TIMESTAMP |
TOFLOAT |
TOINT |
| Modifier and Type | Method and Description |
|---|---|
static FTYPE.Common |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTYPE.Common[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTYPE.Common ENCLOSE
public static final FTYPE.Common TIMESTAMP
public static final FTYPE.Common COALESCE
public static final FTYPE.Common STR
public static final FTYPE.Common TOINT
public static final FTYPE.Common TOFLOAT
public static FTYPE.Common[] values()
for (FTYPE.Common c : FTYPE.Common.values()) System.out.println(c);
public static FTYPE.Common 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 © 2016. All rights reserved.