Package org.openapitools.client.model
Enum VariableQueryParameterDto.OperatorEnum
- java.lang.Object
-
- java.lang.Enum<VariableQueryParameterDto.OperatorEnum>
-
- org.openapitools.client.model.VariableQueryParameterDto.OperatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<VariableQueryParameterDto.OperatorEnum>
- Enclosing class:
- VariableQueryParameterDto
public static enum VariableQueryParameterDto.OperatorEnum extends Enum<VariableQueryParameterDto.OperatorEnum>
Comparison operator to be used. `notLike` is not supported by all endpoints.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVariableQueryParameterDto.OperatorEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VariableQueryParameterDto.OperatorEnumfromValue(String value)StringgetValue()StringtoString()static VariableQueryParameterDto.OperatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static VariableQueryParameterDto.OperatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final VariableQueryParameterDto.OperatorEnum EQ
-
NEQ
public static final VariableQueryParameterDto.OperatorEnum NEQ
-
GT
public static final VariableQueryParameterDto.OperatorEnum GT
-
GTEQ
public static final VariableQueryParameterDto.OperatorEnum GTEQ
-
LT
public static final VariableQueryParameterDto.OperatorEnum LT
-
LTEQ
public static final VariableQueryParameterDto.OperatorEnum LTEQ
-
LIKE
public static final VariableQueryParameterDto.OperatorEnum LIKE
-
NOTLIKE
public static final VariableQueryParameterDto.OperatorEnum NOTLIKE
-
-
Method Detail
-
values
public static VariableQueryParameterDto.OperatorEnum[] 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 (VariableQueryParameterDto.OperatorEnum c : VariableQueryParameterDto.OperatorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VariableQueryParameterDto.OperatorEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<VariableQueryParameterDto.OperatorEnum>
-
fromValue
public static VariableQueryParameterDto.OperatorEnum fromValue(String value)
-
-