public static enum Function.Type extends Enum<Function.Type>
| Enum Constant and Description |
|---|
FUNCTION_NO_TABLE |
FUNCTION_RESULT_UNKNOWN |
FUNCTION_RETURNS_TABLE |
| Modifier and Type | Method and Description |
|---|---|
static Function.Type |
fromValue(int type) |
static Function.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Function.Type FUNCTION_RESULT_UNKNOWN
public static final Function.Type FUNCTION_NO_TABLE
public static final Function.Type FUNCTION_RETURNS_TABLE
public static Function.Type[] values()
for (Function.Type c : Function.Type.values()) System.out.println(c);
public static Function.Type 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 nullpublic static Function.Type fromValue(int type)
Copyright © 2011-2013. All Rights Reserved.