public enum SegmentType extends Enum<SegmentType>
Enum Constant and Description |
---|
DATA_BYTE |
DATA_INT |
DATA_INTEGER |
DATA_STRING |
DATA_STRING_ARRAY |
END_OF_FRAME |
RUN_MODE |
STRING_ENCODING |
TEST_RUN_ID |
Modifier and Type | Method and Description |
---|---|
static SegmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SegmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SegmentType RUN_MODE
public static final SegmentType TEST_RUN_ID
public static final SegmentType STRING_ENCODING
public static final SegmentType DATA_STRING
public static final SegmentType DATA_INTEGER
public static final SegmentType DATA_INT
public static final SegmentType DATA_BYTE
public static final SegmentType DATA_STRING_ARRAY
public static final SegmentType END_OF_FRAME
public static SegmentType[] values()
for (SegmentType c : SegmentType.values()) System.out.println(c);
public static SegmentType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2004–2024 The Apache Software Foundation. All rights reserved.