Package org.opennms.web.rest.v1
Enum OnmsRestService.ComparisonOperation
- java.lang.Object
- 
- java.lang.Enum<OnmsRestService.ComparisonOperation>
- 
- org.opennms.web.rest.v1.OnmsRestService.ComparisonOperation
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<OnmsRestService.ComparisonOperation>
 - Enclosing class:
- OnmsRestService
 
 protected static enum OnmsRestService.ComparisonOperation extends Enum<OnmsRestService.ComparisonOperation> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static OnmsRestService.ComparisonOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static OnmsRestService.ComparisonOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
EQpublic static final OnmsRestService.ComparisonOperation EQ 
 - 
NEpublic static final OnmsRestService.ComparisonOperation NE 
 - 
ILIKEpublic static final OnmsRestService.ComparisonOperation ILIKE 
 - 
LIKEpublic static final OnmsRestService.ComparisonOperation LIKE 
 - 
IPLIKEpublic static final OnmsRestService.ComparisonOperation IPLIKE 
 - 
GTpublic static final OnmsRestService.ComparisonOperation GT 
 - 
LTpublic static final OnmsRestService.ComparisonOperation LT 
 - 
GEpublic static final OnmsRestService.ComparisonOperation GE 
 - 
LEpublic static final OnmsRestService.ComparisonOperation LE 
 - 
CONTAINSpublic static final OnmsRestService.ComparisonOperation CONTAINS 
 
- 
 - 
Method Detail- 
valuespublic static OnmsRestService.ComparisonOperation[] 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 (OnmsRestService.ComparisonOperation c : OnmsRestService.ComparisonOperation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static OnmsRestService.ComparisonOperation 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
 
 
- 
 
-