public enum OpEm extends Enum<OpEm>
| Enum Constant and Description |
|---|
CONTAIN |
ENDWITH |
EQ |
GE |
GT |
LE |
LT |
MINUS |
NE |
PLUS |
REGEX |
STARTWITH |
| Modifier and Type | Method and Description |
|---|---|
Object |
excute(String left,
String right) |
String |
val() |
static OpEm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpEm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpEm PLUS
public static final OpEm MINUS
public static final OpEm EQ
public static final OpEm NE
public static final OpEm GT
public static final OpEm LT
public static final OpEm GE
public static final OpEm LE
public static final OpEm STARTWITH
public static final OpEm ENDWITH
public static final OpEm CONTAIN
public static final OpEm REGEX
public static OpEm[] values()
for (OpEm c : OpEm.values()) System.out.println(c);
public static OpEm 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 val()
Copyright © 2015. All Rights Reserved.