public static enum MvelEvaluator.EvaluatorType extends Enum<MvelEvaluator.EvaluatorType>
| Enum Constant and Description |
|---|
FULLY_SYNCHRONIZED |
SYNCHRONIZED_TILL_EVALUATED |
THREAD_SAFE_ON_FIRST_EVAL |
THREAD_UNSAFE |
| Modifier and Type | Method and Description |
|---|---|
<T> MvelEvaluator<T> |
createMvelEvaluator(MvelEvaluator<T> syncedWith,
Serializable expr) |
<T> MvelEvaluator<T> |
createMvelEvaluator(Serializable expr) |
static MvelEvaluator.EvaluatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MvelEvaluator.EvaluatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MvelEvaluator.EvaluatorType THREAD_UNSAFE
public static final MvelEvaluator.EvaluatorType THREAD_SAFE_ON_FIRST_EVAL
public static final MvelEvaluator.EvaluatorType SYNCHRONIZED_TILL_EVALUATED
public static final MvelEvaluator.EvaluatorType FULLY_SYNCHRONIZED
public static MvelEvaluator.EvaluatorType[] values()
for (MvelEvaluator.EvaluatorType c : MvelEvaluator.EvaluatorType.values()) System.out.println(c);
public static MvelEvaluator.EvaluatorType 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 <T> MvelEvaluator<T> createMvelEvaluator(Serializable expr)
public <T> MvelEvaluator<T> createMvelEvaluator(MvelEvaluator<T> syncedWith, Serializable expr)
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.