public enum DataSequenceSection extends Enum<DataSequenceSection>
Enum Constant and Description |
---|
Count
Include tag count in the output data
|
Data
Include EPC data in the output data
|
NotUsed
Not used
|
Timestamp
Include tag count in the output data
|
Modifier and Type | Method and Description |
---|---|
static DataSequenceSection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSequenceSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSequenceSection NotUsed
public static final DataSequenceSection Count
public static final DataSequenceSection Timestamp
public static final DataSequenceSection Data
public static DataSequenceSection[] values()
for (DataSequenceSection c : DataSequenceSection.values()) System.out.println(c);
public static DataSequenceSection 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 null