public static enum XTCETypedObject.EngineeringType extends Enum<XTCETypedObject.EngineeringType>
| Enum Constant and Description |
|---|
ARRAY
Calibrated/Engineering type is an Array of an item of another type.
|
BINARY
Calibrated/Engineering type is a simple binary value.
|
BOOLEAN
Calibrated/Engineering type is a Boolean String, which is a trivial
two value case of an Enumerated type.
|
DURATION
Calibrated/Engineering type is a duration, or relative time value.
|
ENUMERATED
Calibrated/Engineering type is an Enumerated String.
|
FLOAT128
Calibrated/Engineering type is a quad IEEE754 precision Floating
Point number.
|
FLOAT32
Calibrated/Engineering type is a single IEEE754 precision Floating
Point number.
|
FLOAT64
Calibrated/Engineering type is a double IEEE754 precision Floating
Point number.
|
SIGNED
Calibrated/Engineering type is a signed integer.
|
STRING
Calibrated/Engineering type is a String value.
|
STRUCTURE
Calibrated/Engineering type is an Aggregate or C style Structure.
|
TIME
Calibrated/Engineering type is an Absolute Time value.
|
UNKNOWN
Calibrated/Engineering type could not be determined.
|
UNSIGNED
Calibrated/Engineering type is an unsigned integer.
|
| Modifier and Type | Method and Description |
|---|---|
static XTCETypedObject.EngineeringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XTCETypedObject.EngineeringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XTCETypedObject.EngineeringType UNKNOWN
public static final XTCETypedObject.EngineeringType ENUMERATED
public static final XTCETypedObject.EngineeringType SIGNED
public static final XTCETypedObject.EngineeringType UNSIGNED
public static final XTCETypedObject.EngineeringType FLOAT32
public static final XTCETypedObject.EngineeringType FLOAT64
public static final XTCETypedObject.EngineeringType FLOAT128
public static final XTCETypedObject.EngineeringType STRUCTURE
public static final XTCETypedObject.EngineeringType BINARY
public static final XTCETypedObject.EngineeringType BOOLEAN
public static final XTCETypedObject.EngineeringType STRING
public static final XTCETypedObject.EngineeringType TIME
public static final XTCETypedObject.EngineeringType DURATION
public static final XTCETypedObject.EngineeringType ARRAY
public static XTCETypedObject.EngineeringType[] values()
for (XTCETypedObject.EngineeringType c : XTCETypedObject.EngineeringType.values()) System.out.println(c);
public static XTCETypedObject.EngineeringType 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.