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