public static enum FunctionTemplate.NullHandling extends Enum<FunctionTemplate.NullHandling>
Enum Constant and Description |
---|
INTERNAL
Method handles nulls.
|
NULL_IF_NULL
Null output if any null input:
Indicates that a method's associated logical operation returns NULL if
either input is NULL, and therefore that the method must not be called
with null inputs.
|
Modifier and Type | Method and Description |
---|---|
static FunctionTemplate.NullHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionTemplate.NullHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionTemplate.NullHandling INTERNAL
public static final FunctionTemplate.NullHandling NULL_IF_NULL
public static FunctionTemplate.NullHandling[] values()
for (FunctionTemplate.NullHandling c : FunctionTemplate.NullHandling.values()) System.out.println(c);
public static FunctionTemplate.NullHandling 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 © 2016 The Apache Software Foundation. All rights reserved.