public enum ChainingStrategy extends Enum<ChainingStrategy>
ALWAYS is used, which means operators will be eagerly chained whenever possible.| Enum Constant and Description |
|---|
ALWAYS
Operators will be eagerly chained whenever possible, for
maximal performance.
|
FORCE_ALWAYS
Chaining will happen even if chaining is disabled on the execution environment.
|
HEAD |
NEVER
The operator will not be chained to the preceding or succeeding operators.
|
| Modifier and Type | Method and Description |
|---|---|
static ChainingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChainingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChainingStrategy FORCE_ALWAYS
public static final ChainingStrategy ALWAYS
public static final ChainingStrategy NEVER
public static final ChainingStrategy HEAD
public static ChainingStrategy[] values()
for (ChainingStrategy c : ChainingStrategy.values()) System.out.println(c);
public static ChainingStrategy 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 © 2014–2016 The Apache Software Foundation. All rights reserved.