public enum EventAlarmExpressionComparisonOperator extends Enum<EventAlarmExpressionComparisonOperator>
Java class for EventAlarmExpressionComparisonOperator.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventAlarmExpressionComparisonOperator">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="equals"/>
<enumeration value="notEqualTo"/>
<enumeration value="startsWith"/>
<enumeration value="doesNotStartWith"/>
<enumeration value="endsWith"/>
<enumeration value="doesNotEndWith"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DOES_NOT_END_WITH |
DOES_NOT_START_WITH |
ENDS_WITH |
EQUALS |
NOT_EQUAL_TO |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static EventAlarmExpressionComparisonOperator |
fromValue(String v) |
String |
value() |
static EventAlarmExpressionComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventAlarmExpressionComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventAlarmExpressionComparisonOperator EQUALS
public static final EventAlarmExpressionComparisonOperator NOT_EQUAL_TO
public static final EventAlarmExpressionComparisonOperator STARTS_WITH
public static final EventAlarmExpressionComparisonOperator DOES_NOT_START_WITH
public static final EventAlarmExpressionComparisonOperator ENDS_WITH
public static final EventAlarmExpressionComparisonOperator DOES_NOT_END_WITH
public static EventAlarmExpressionComparisonOperator[] values()
for (EventAlarmExpressionComparisonOperator c : EventAlarmExpressionComparisonOperator.values()) System.out.println(c);
public static EventAlarmExpressionComparisonOperator 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 value()
public static EventAlarmExpressionComparisonOperator fromValue(String v)
Copyright © 2018. All rights reserved.