public static enum FTYPE.String extends Enum<FTYPE.String>
| Enum Constant and Description |
|---|
LEFT |
LOWER |
LTRIM |
REPLACE |
RIGHT |
RTRIM |
SUBSTRING |
TRIM |
UPPER |
| Modifier and Type | Method and Description |
|---|---|
static FTYPE.String |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FTYPE.String[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FTYPE.String TRIM
public static final FTYPE.String REPLACE
public static final FTYPE.String SUBSTRING
public static final FTYPE.String LEFT
public static final FTYPE.String RIGHT
public static final FTYPE.String LTRIM
public static final FTYPE.String RTRIM
public static final FTYPE.String LOWER
public static final FTYPE.String UPPER
public static FTYPE.String[] values()
for (FTYPE.String c : FTYPE.String.values()) System.out.println(c);
public static FTYPE.String 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.