public static enum Function.Determinism extends Enum<Function.Determinism>
Enum Constant and Description |
---|
COMMAND_DETERMINISTIC
The result of function evaluation is only deterministic within the scope of the user command.
|
DETERMINISTIC
The function will always return the same result for the given inputs.
|
NONDETERMINISTIC
The result of function evaluation is fully nondeterministic.
|
SESSION_DETERMINISTIC
The function will return the same result for the given inputs under the same user session.
|
USER_DETERMINISTIC
The function will return the same result for the given inputs for the same user.
|
VDB_DETERMINISTIC
The function will always return the same result for the given inputs.
|
Modifier and Type | Field and Description |
---|---|
static Function.Determinism |
DEFAULT_VALUE
The default value is .
|
Modifier and Type | Method and Description |
---|---|
static Function.Determinism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function.Determinism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Function.Determinism COMMAND_DETERMINISTIC
public static final Function.Determinism DETERMINISTIC
public static final Function.Determinism NONDETERMINISTIC
public static final Function.Determinism SESSION_DETERMINISTIC
public static final Function.Determinism USER_DETERMINISTIC
public static final Function.Determinism VDB_DETERMINISTIC
public static final Function.Determinism DEFAULT_VALUE
public static Function.Determinism[] values()
for (Function.Determinism c : Function.Determinism.values()) System.out.println(c);
public static Function.Determinism 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–2019. All rights reserved.