public static enum Expression.Predicate extends Enum<Expression.Predicate>
| Enum Constant and Description |
|---|
GREATER_THAN |
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static Expression.Predicate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.Predicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.Predicate GREATER_THAN
public static Expression.Predicate[] values()
for (Expression.Predicate c : Expression.Predicate.values()) System.out.println(c);
public static Expression.Predicate 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 getSymbol()
Copyright © 2019 The Apache Software Foundation. All Rights Reserved.