public static enum XTCETypedObject.RawType extends Enum<XTCETypedObject.RawType>
| Enum Constant and Description |
|---|
BCD
Raw/Encoding type is Binary Coded Data.
|
binary
Raw/Encoding type is simple binary data.
|
IEEE754_1985
Raw/Encoding type is an IEEE 754 floating point value.
|
MILSTD_1750A
Raw/Encoding type is a MIL-STD 1750A floating point value.
|
onesComplement
Raw/Encoding type is an integer of signed values differentiated
by ones complement representation.
|
packedBCD
Raw/Encoding type is Packed Binary Coded Data.
|
signMagnitude
Raw/Encoding type is an integer of signed values differentiated
by the value of the most significant bit.
|
twosComplement
Raw/Encoding type is an integer of signed values differentiated
by twos complement representation.
|
UNKNOWN
Raw/Encoding type could not be determined.
|
unsigned
Raw/Encoding type is an integer of unsigned values.
|
UTF16
Raw/Encoding type is a UTF-16 encoding string value.
|
UTF8
Raw/Encoding type is a UTF-8 encoding string value.
|
| Modifier and Type | Method and Description |
|---|---|
static XTCETypedObject.RawType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XTCETypedObject.RawType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XTCETypedObject.RawType UNKNOWN
public static final XTCETypedObject.RawType unsigned
public static final XTCETypedObject.RawType signMagnitude
public static final XTCETypedObject.RawType onesComplement
public static final XTCETypedObject.RawType twosComplement
public static final XTCETypedObject.RawType BCD
public static final XTCETypedObject.RawType packedBCD
public static final XTCETypedObject.RawType binary
public static final XTCETypedObject.RawType IEEE754_1985
public static final XTCETypedObject.RawType MILSTD_1750A
public static final XTCETypedObject.RawType UTF8
public static final XTCETypedObject.RawType UTF16
public static XTCETypedObject.RawType[] values()
for (XTCETypedObject.RawType c : XTCETypedObject.RawType.values()) System.out.println(c);
public static XTCETypedObject.RawType 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 © 2015–2019. All rights reserved.