public static enum DataSource.EventTrigger extends java.lang.Enum<DataSource.EventTrigger>
| Enum Constant | Description |
|---|---|
DATA_CHANGE |
|
DATA_OR_QUALITY_CHANGE |
|
DATA_UPDATE |
|
NONE |
| Modifier and Type | Method | Description |
|---|---|---|
static DataSource.EventTrigger |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DataSource.EventTrigger[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSource.EventTrigger DATA_CHANGE
public static final DataSource.EventTrigger DATA_OR_QUALITY_CHANGE
public static final DataSource.EventTrigger DATA_UPDATE
public static final DataSource.EventTrigger NONE
public static DataSource.EventTrigger[] values()
for (DataSource.EventTrigger c : DataSource.EventTrigger.values()) System.out.println(c);
public static DataSource.EventTrigger 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 null