Package com.axway.apim.adapter.apis
Enum APIFilter.FILTER_OP
- java.lang.Object
-
- java.lang.Enum<APIFilter.FILTER_OP>
-
- com.axway.apim.adapter.apis.APIFilter.FILTER_OP
-
- All Implemented Interfaces:
Serializable,Comparable<APIFilter.FILTER_OP>
- Enclosing class:
- APIFilter
public static enum APIFilter.FILTER_OP extends Enum<APIFilter.FILTER_OP>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static APIFilter.FILTER_OPvalueOf(String name)Returns the enum constant of this type with the specified name.static APIFilter.FILTER_OP[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eq
public static final APIFilter.FILTER_OP eq
-
ne
public static final APIFilter.FILTER_OP ne
-
gt
public static final APIFilter.FILTER_OP gt
-
lt
public static final APIFilter.FILTER_OP lt
-
ge
public static final APIFilter.FILTER_OP ge
-
le
public static final APIFilter.FILTER_OP le
-
like
public static final APIFilter.FILTER_OP like
-
gele
public static final APIFilter.FILTER_OP gele
-
-
Method Detail
-
values
public static APIFilter.FILTER_OP[] 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 (APIFilter.FILTER_OP c : APIFilter.FILTER_OP.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static APIFilter.FILTER_OP 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
-
-