public enum EnumResultEventType extends java.lang.Enum<EnumResultEventType> implements IEventTypeID
| Enum Constant and Description |
|---|
ResultsCreated
int value representing Results Created
|
ResultsDeleted
int value representing Results Deleted
|
ResultsUpdated
int value representing Results Updated
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the String value of DataSink Type.
|
static EnumResultEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumResultEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumResultEventType ResultsCreated
public static final EnumResultEventType ResultsDeleted
public static final EnumResultEventType ResultsUpdated
public static EnumResultEventType[] values()
for (EnumResultEventType c : EnumResultEventType.values()) System.out.println(c);
public static EnumResultEventType 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 short getValue()
getValue in interface IEventTypeID