Package es.bsc.dataclay.util.filtering
Enum Condition.ConditionOp
- java.lang.Object
- 
- java.lang.Enum<Condition.ConditionOp>
- 
- es.bsc.dataclay.util.filtering.Condition.ConditionOp
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Condition.ConditionOp>
 - Enclosing class:
- Condition
 
 public static enum Condition.ConditionOp extends Enum<Condition.ConditionOp> Accepted operations for the condition check.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CONTAINSDIFFERENTEQUALSGREATERGREATER_EQUALSLESSLESS_EQUALSPREFIX
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Condition.ConditionOpfromString(String op)Method that retrieves the ConditionOp from the given string.static Condition.ConditionOp[]getBooleanOps()static Condition.ConditionOp[]getNumericOps()StringgetOp()static Condition.ConditionOpvalueOf(String name)Returns the enum constant of this type with the specified name.static Condition.ConditionOp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DIFFERENTpublic static final Condition.ConditionOp DIFFERENT 
 - 
LESS_EQUALSpublic static final Condition.ConditionOp LESS_EQUALS 
 - 
GREATER_EQUALSpublic static final Condition.ConditionOp GREATER_EQUALS 
 - 
CONTAINSpublic static final Condition.ConditionOp CONTAINS 
 - 
PREFIXpublic static final Condition.ConditionOp PREFIX 
 - 
LESSpublic static final Condition.ConditionOp LESS 
 - 
GREATERpublic static final Condition.ConditionOp GREATER 
 - 
EQUALSpublic static final Condition.ConditionOp EQUALS 
 
- 
 - 
Method Detail- 
valuespublic static Condition.ConditionOp[] 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 (Condition.ConditionOp c : Condition.ConditionOp.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Condition.ConditionOp 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 name
- NullPointerException- if the argument is null
 
 - 
getOppublic String getOp() 
 - 
getNumericOpspublic static Condition.ConditionOp[] getNumericOps() 
 - 
getBooleanOpspublic static Condition.ConditionOp[] getBooleanOps() 
 - 
fromStringpublic static Condition.ConditionOp fromString(String op) Method that retrieves the ConditionOp from the given string.- Parameters:
- op- operation in form of string.
- Returns:
- operation in form of ConditionOp.
- Throws:
- DataClayException- if the operation is not supported.
 
 
- 
 
-