public enum ExpressionSupport extends Enum<ExpressionSupport>
| Enum Constant and Description |
|---|
NOT_SUPPORTED
Expressions not allowed.
|
REQUIRED
Requires expressions.
|
SUPPORTED
Expressions are required but not enforced.
|
| Modifier and Type | Method and Description |
|---|---|
static ExpressionSupport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionSupport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionSupport SUPPORTED
public static final ExpressionSupport NOT_SUPPORTED
public static final ExpressionSupport REQUIRED
public static ExpressionSupport[] values()
for (ExpressionSupport c : ExpressionSupport.values()) System.out.println(c);
public static ExpressionSupport 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 © 2017 MuleSoft, Inc.. All rights reserved.