public static enum FunctionImport.ReturnType extends Enum<FunctionImport.ReturnType>
Enum Constant and Description |
---|
COMPLEX_TYPE |
ENTITY_TYPE |
NONE |
SCALAR |
Modifier and Type | Method and Description |
---|---|
static FunctionImport.ReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionImport.ReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionImport.ReturnType SCALAR
public static final FunctionImport.ReturnType ENTITY_TYPE
public static final FunctionImport.ReturnType COMPLEX_TYPE
public static final FunctionImport.ReturnType NONE
public static FunctionImport.ReturnType[] values()
for (FunctionImport.ReturnType c : FunctionImport.ReturnType.values()) System.out.println(c);
public static FunctionImport.ReturnType 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 © 2013 The Apache Software Foundation. All Rights Reserved.