public enum CodaBankTag extends java.lang.Enum<CodaBankTag>
Enum Constant and Description |
---|
END
End event
|
GO
Go event
|
PAUSE
Pause event
|
PEB
Primary event builder
|
PEB_SYNC
Primary event builder with sync set
|
PRESTART
Prestart event
|
SEB
Secondary event builder
|
SEB_SYNC
Secondary event builder with sync set
|
SYNC
Sync event
|
TRIGGER_BUILT_NOTS_NORUN
Built trigger bank, no timestamps, run: no #/type, with specific
|
TRIGGER_BUILT_NOTS_NORUN_NOSPEC
Built trigger bank, no timestamps, run: no #, type or specific
|
TRIGGER_BUILT_NOTS_RUN
Built trigger bank, no timestamps, run: with #, type and specific
|
TRIGGER_BUILT_NOTS_RUN_NOSPEC
Built trigger bank, no timestamps, run: #/type, no specific
|
TRIGGER_BUILT_TS_NORUN
Built trigger bank, with timestamps, run: no #/type, with specific
|
TRIGGER_BUILT_TS_NORUN_NOSPEC
Built trigger bank, with timestamps, run: no #, type or specific
|
TRIGGER_BUILT_TS_RUN
Built trigger bank, with timestamps, run: with #, type and specific
|
TRIGGER_BUILT_TS_RUN_NOSPEC
Built trigger bank, with timestamps, run: no #/type, no specific
|
TRIGGER_RAW_NOTS
Raw trigger bank, no timestamps
|
TRIGGER_RAW_TS
Raw trigger bank, with timestamps
|
Modifier and Type | Method and Description |
---|---|
static CodaBankTag |
getBankType(int val)
Obtain the enum from the tag value or null if none.
|
java.lang.String |
getDescription()
Get the enum's description.
|
static java.lang.String |
getDescription(int val)
Obtain the description from the tag value.
|
static java.lang.String |
getName(int val)
Obtain the name from the tag value.
|
int |
getValue()
Get the enum's tag value.
|
static CodaBankTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodaBankTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodaBankTag TRIGGER_RAW_NOTS
public static final CodaBankTag TRIGGER_RAW_TS
public static final CodaBankTag TRIGGER_BUILT_NOTS_NORUN
public static final CodaBankTag TRIGGER_BUILT_TS_NORUN
public static final CodaBankTag TRIGGER_BUILT_NOTS_RUN
public static final CodaBankTag TRIGGER_BUILT_TS_RUN
public static final CodaBankTag TRIGGER_BUILT_NOTS_NORUN_NOSPEC
public static final CodaBankTag TRIGGER_BUILT_TS_NORUN_NOSPEC
public static final CodaBankTag TRIGGER_BUILT_NOTS_RUN_NOSPEC
public static final CodaBankTag TRIGGER_BUILT_TS_RUN_NOSPEC
public static final CodaBankTag PEB
public static final CodaBankTag PEB_SYNC
public static final CodaBankTag SEB
public static final CodaBankTag SEB_SYNC
public static final CodaBankTag SYNC
public static final CodaBankTag PRESTART
public static final CodaBankTag GO
public static final CodaBankTag PAUSE
public static final CodaBankTag END
public static CodaBankTag[] values()
for (CodaBankTag c : CodaBankTag.values()) System.out.println(c);
public static CodaBankTag 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 CodaBankTag getBankType(int val)
val
- the tag value to match.null
.public static java.lang.String getName(int val)
val
- the tag value to match.public static java.lang.String getDescription(int val)
val
- the tag value to match.public int getValue()
public java.lang.String getDescription()