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