public static enum FunctionMethod.Determinism extends Enum<FunctionMethod.Determinism>
| Enum Constant and Description |
|---|
COMMAND_DETERMINISTIC |
DETERMINISTIC |
NONDETERMINISTIC |
SESSION_DETERMINISTIC |
USER_DETERMINISTIC |
VDB_DETERMINISTIC |
| Modifier and Type | Method and Description |
|---|---|
static FunctionMethod.Determinism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionMethod.Determinism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionMethod.Determinism NONDETERMINISTIC
public static final FunctionMethod.Determinism COMMAND_DETERMINISTIC
public static final FunctionMethod.Determinism SESSION_DETERMINISTIC
public static final FunctionMethod.Determinism USER_DETERMINISTIC
public static final FunctionMethod.Determinism VDB_DETERMINISTIC
public static final FunctionMethod.Determinism DETERMINISTIC
public static FunctionMethod.Determinism[] values()
for (FunctionMethod.Determinism c : FunctionMethod.Determinism.values()) System.out.println(c);
public static FunctionMethod.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 © 2012 JBoss by Red Hat. All Rights Reserved.