Enum Operator
- java.lang.Object
-
- java.lang.Enum<Operator>
-
- org.uitnet.testing.smartfwk.ui.core.file.reader.support.Operator
-
- All Implemented Interfaces:
Serializable,Comparable<Operator>
public enum Operator extends Enum<Operator>
- Author:
- Madhav Krishna
-
-
Enum Constant Summary
Enum Constants Enum Constant Description containsContains value operatordontContainsDon't Contains value operatordontEndsWithDon't Ends With value operatordontStartsWithDon't Starts With value operatorendsWithEnds With value operatoreqEqual to operatorgtGreater than operatorgteGreater than equal to operatorltLess than operatorlteLess than equal to operatorneNot equal to operatorstartsWithStarts with value operator
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetOp()static OperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eq
public static final Operator eq
Equal to operator
-
ne
public static final Operator ne
Not equal to operator
-
gt
public static final Operator gt
Greater than operator
-
gte
public static final Operator gte
Greater than equal to operator
-
lt
public static final Operator lt
Less than operator
-
lte
public static final Operator lte
Less than equal to operator
-
startsWith
public static final Operator startsWith
Starts with value operator
-
dontStartsWith
public static final Operator dontStartsWith
Don't Starts With value operator
-
endsWith
public static final Operator endsWith
Ends With value operator
-
dontEndsWith
public static final Operator dontEndsWith
Don't Ends With value operator
-
contains
public static final Operator contains
Contains value operator
-
dontContains
public static final Operator dontContains
Don't Contains value operator
-
-
Method Detail
-
values
public static Operator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Operator c : Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Operator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getOp
public String getOp()
-
-