public enum ServiceManagerQueryOperator extends java.lang.Enum<ServiceManagerQueryOperator>
Enum Constant and Description |
---|
BEGINS_WITH |
EQUALS |
LIKE |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getFormattedName()
Returns the enum value formatted so it is suitable to be displayed on the web ui
|
java.lang.String |
getOperator()
Returns a string with the operators to insert into the Service Manager query
|
java.lang.String |
getShortName()
Returns the enum value formatted so it is suitable to be displayed on the mobile gateway
|
static ServiceManagerQueryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceManagerQueryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceManagerQueryOperator LIKE
public static final ServiceManagerQueryOperator EQUALS
public static final ServiceManagerQueryOperator NOT_EQUALS
public static final ServiceManagerQueryOperator BEGINS_WITH
public static ServiceManagerQueryOperator[] values()
for (ServiceManagerQueryOperator c : ServiceManagerQueryOperator.values()) System.out.println(c);
public static ServiceManagerQueryOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getOperator()
public java.lang.String getShortName()
public java.lang.String getFormattedName()