public static enum Expression.Op extends java.lang.Enum<Expression.Op>
| Enum Constant and Description | 
|---|
| CONTAINS | 
| EQ | 
| MATCH | 
| NOT_EQ | 
| PREFIX | 
| RANGE | 
| SUFFIX | 
| Modifier and Type | Method and Description | 
|---|---|
| static Expression.Op | valueOf(Operator operator) | 
| static Expression.Op | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Expression.Op[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Expression.Op EQ
public static final Expression.Op MATCH
public static final Expression.Op PREFIX
public static final Expression.Op SUFFIX
public static final Expression.Op CONTAINS
public static final Expression.Op NOT_EQ
public static final Expression.Op RANGE
public static Expression.Op[] values()
for (Expression.Op c : Expression.Op.values()) System.out.println(c);
public static Expression.Op valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Expression.Op valueOf(Operator operator)
Copyright © 2018 The Apache Software Foundation