public enum FunctionType extends Enum<FunctionType>
Captures the list of function object types which may be used to implement data mapping functions. Library implementations may rely on this for type metadata.
| Enum Constant and Description |
|---|
double_double |
double_int |
double_long |
double_T |
int_double |
int_int |
int_long |
int_T |
long_double |
long_int |
long_long |
long_T |
R_T |
| Modifier and Type | Method and Description |
|---|---|
ValueType |
getInputValueType() |
ValueType |
getReturnValueType() |
static FunctionType |
valueOf(Class<?> clazz) |
static FunctionType |
valueOf(Object g) |
static FunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionType long_long
public static final FunctionType long_int
public static final FunctionType long_double
public static final FunctionType long_T
public static final FunctionType int_int
public static final FunctionType int_long
public static final FunctionType int_double
public static final FunctionType int_T
public static final FunctionType double_T
public static final FunctionType double_double
public static final FunctionType double_int
public static final FunctionType double_long
public static final FunctionType R_T
public static FunctionType[] values()
for (FunctionType c : FunctionType.values()) System.out.println(c);
public static 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 nullpublic static FunctionType valueOf(Class<?> clazz)
public static FunctionType valueOf(Object g)
public ValueType getReturnValueType()
public ValueType getInputValueType()
Copyright © 2018. All rights reserved.