public enum EnumFilterElement extends java.lang.Enum<EnumFilterElement>
| Enum Constant and Description |
|---|
CODE
Code filter.
|
DATA_TYPE
Data type filter.
|
END_TIME
EndTime filter.
|
INTERVAL_TYPE
Interval type filter.
|
MESSAGE_IDENTIFICATION
Message identification filter.
|
MESSAGE_TYPE
Message type filter.
|
MESSAGE_VERSION
Message version filter.
|
OWNER
Owner filter.
|
QUEUE
Queue filter.
|
START_TIME
StartTime filter.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumFilterElement |
fromString(java.lang.String text)
Returns a
EnumFiltersElement from the given text. |
java.lang.String |
toString()
Returns the text code for the current filter.
|
static EnumFilterElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFilterElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFilterElement START_TIME
public static final EnumFilterElement END_TIME
public static final EnumFilterElement CODE
public static final EnumFilterElement INTERVAL_TYPE
public static final EnumFilterElement DATA_TYPE
public static final EnumFilterElement OWNER
public static final EnumFilterElement MESSAGE_IDENTIFICATION
public static final EnumFilterElement MESSAGE_VERSION
public static final EnumFilterElement MESSAGE_TYPE
public static final EnumFilterElement QUEUE
public static EnumFilterElement[] values()
for (EnumFilterElement c : EnumFilterElement.values()) System.out.println(c);
public static EnumFilterElement 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 static EnumFilterElement fromString(java.lang.String text)
EnumFiltersElement from the given text.
null if the given text doesn't describes any of the elements.text - Text to retrieve the EnumTypenull if the given text doesn't describes any of the elements.public java.lang.String toString()
toString in class java.lang.Enum<EnumFilterElement>