public enum EnumSynchronizationTrigger extends java.lang.Enum<EnumSynchronizationTrigger>
| Enum Constant and Description |
|---|
DATA_ACQUISION_NOT_SYNCHRONIZED_BY_COMMON_CHANNEL_OR_TRIGGER
The DATA_ACQUISION_NOT_SYNCHRONIZED_BY_COMMON_CHANNEL_OR_TRIGGER.
|
PROVIDES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_TO_OTHER_EQUIPMENT
The PROVIDES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_TO_OTHER_EQUIPMENT.
|
RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_AND_FORWARDS_IT
The RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_AND_FORWARDS_IT.
|
RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_FROM_OTHER_EQUIPMENT
The RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_FROM_OTHER_EQUIPMENT.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumSynchronizationTrigger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumSynchronizationTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumSynchronizationTrigger PROVIDES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_TO_OTHER_EQUIPMENT
public static final EnumSynchronizationTrigger RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_FROM_OTHER_EQUIPMENT
public static final EnumSynchronizationTrigger RECEIVES_SYNCHRONIZATION_CHANNEL_OR_TRIGGER_AND_FORWARDS_IT
public static final EnumSynchronizationTrigger DATA_ACQUISION_NOT_SYNCHRONIZED_BY_COMMON_CHANNEL_OR_TRIGGER
public static EnumSynchronizationTrigger[] values()
for (EnumSynchronizationTrigger c : EnumSynchronizationTrigger.values()) System.out.println(c);
public static EnumSynchronizationTrigger 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 java.lang.String getValue()