com.agilent.android.io
Enum IO.BinaryBlockDataType
java.lang.Object
java.lang.Enum<IO.BinaryBlockDataType>
com.agilent.android.io.IO.BinaryBlockDataType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<IO.BinaryBlockDataType>
- Enclosing class:
- IO
public static enum IO.BinaryBlockDataType
- extends java.lang.Enum<IO.BinaryBlockDataType>
Specifies the type of data that makes up the IEEE Block Data.
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
int16
public static final IO.BinaryBlockDataType int16
int32
public static final IO.BinaryBlockDataType int32
int64
public static final IO.BinaryBlockDataType int64
real32
public static final IO.BinaryBlockDataType real32
real64
public static final IO.BinaryBlockDataType real64
values
public static IO.BinaryBlockDataType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (IO.BinaryBlockDataType c : IO.BinaryBlockDataType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static IO.BinaryBlockDataType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null