|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ServiceManagerQueryOperator>
com.alarmpoint.servicemanager.ServiceManagerQueryOperator
public enum ServiceManagerQueryOperator
Used to define how to search on a specific field
Enum Constant Summary | |
---|---|
BEGINS_WITH
|
|
EQUALS
|
|
LIKE
|
|
NOT_EQUALS
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ServiceManagerQueryOperator LIKE
public static final ServiceManagerQueryOperator EQUALS
public static final ServiceManagerQueryOperator NOT_EQUALS
public static final ServiceManagerQueryOperator BEGINS_WITH
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getOperator()
public java.lang.String getShortName()
public java.lang.String getFormattedName()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |