public enum QueryCriteriaOperator extends Enum<QueryCriteriaOperator>
Modifier and Type | Method and Description |
---|---|
String |
getType() |
static QueryCriteriaOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryCriteriaOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryCriteriaOperator EQ
public static final QueryCriteriaOperator LT
public static final QueryCriteriaOperator LTE
public static final QueryCriteriaOperator GT
public static final QueryCriteriaOperator GTE
public static QueryCriteriaOperator[] values()
for (QueryCriteriaOperator c : QueryCriteriaOperator.values()) System.out.println(c);
public static QueryCriteriaOperator 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 getType()
Copyright © 2019 Vitam. All rights reserved.