public enum SenseDataFormat extends Enum<SenseDataFormat>
| Enum Constant and Description |
|---|
DESCRIPTOR
Descriptor format.
|
FIXED
Fixed format.
|
| Modifier and Type | Method and Description |
|---|---|
static SenseDataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SenseDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SenseDataFormat FIXED
public static final SenseDataFormat DESCRIPTOR
public static SenseDataFormat[] values()
for (SenseDataFormat c : SenseDataFormat.values()) System.out.println(c);
public static SenseDataFormat 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 © 2013 University of Konstanz, Distributed Systems Group. All Rights Reserved.