public enum ExpressionResult extends Enum<ExpressionResult>
Enum Constant and Description |
---|
DEFERRED |
FAIL |
PASS |
UNEVALUATED |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ExpressionResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionResult PASS
public static final ExpressionResult FAIL
public static final ExpressionResult DEFERRED
public static final ExpressionResult UNEVALUATED
public static ExpressionResult[] values()
for (ExpressionResult c : ExpressionResult.values()) System.out.println(c);
public static ExpressionResult 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 String toString()
toString
in class Enum<ExpressionResult>
Copyright © 2015–2019 Yahoo! Inc.. All rights reserved.