public enum Signal extends java.lang.Enum<Signal>
Token
role within a stream of tokens. These signals begin/end various entities
such as fields, composites, messages, repeating groups, enumerations, bitsets, etc.Enum Constant and Description |
---|
BEGIN_COMPOSITE
Denotes the beginning of a composite
|
BEGIN_ENUM
Denotes the beginning of an enumeration
|
BEGIN_FIELD
Denotes the beginning of a field
|
BEGIN_GROUP
Denotes the beginning of a repeating group
|
BEGIN_MESSAGE
Denotes the beginning of a message
|
BEGIN_SET
Denotes the beginning of a bitset
|
BEGIN_VAR_DATA
Denotes the beginning of a variable data block
|
CHOICE
Denotes a bit value (choice) of a bitset
|
ENCODING
Denotes the
Token is an encoding |
END_COMPOSITE
Denotes the end of a composite
|
END_ENUM
Denotes the end of an enumeration
|
END_FIELD
Denotes the end of a field
|
END_GROUP
Denotes the end of a repeating group
|
END_MESSAGE
Denotes the end of a message
|
END_SET
Denotes the end of a bitset
|
END_VAR_DATA
Denotes the end of a variable data block
|
VALID_VALUE
Denotes a value of an enumeration
|
Modifier and Type | Method and Description |
---|---|
static Signal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Signal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Signal BEGIN_MESSAGE
public static final Signal END_MESSAGE
public static final Signal BEGIN_COMPOSITE
public static final Signal END_COMPOSITE
public static final Signal BEGIN_FIELD
public static final Signal END_FIELD
public static final Signal BEGIN_GROUP
public static final Signal END_GROUP
public static final Signal BEGIN_ENUM
public static final Signal VALID_VALUE
public static final Signal END_ENUM
public static final Signal BEGIN_SET
public static final Signal CHOICE
public static final Signal END_SET
public static final Signal BEGIN_VAR_DATA
public static final Signal END_VAR_DATA
public static Signal[] values()
for (Signal c : Signal.values()) System.out.println(c);
public static Signal 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 nullCopyright © 2014-2018 Real Logic Ltd. All Rights Reserved.