Package org.yamcs.xtce
Enum FloatDataEncoding.Encoding
- java.lang.Object
-
- java.lang.Enum<FloatDataEncoding.Encoding>
-
- org.yamcs.xtce.FloatDataEncoding.Encoding
-
- All Implemented Interfaces:
Serializable,Comparable<FloatDataEncoding.Encoding>
- Enclosing class:
- FloatDataEncoding
public static enum FloatDataEncoding.Encoding extends Enum<FloatDataEncoding.Encoding>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IEEE754_1985MILSTD_1750ASTRING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FloatDataEncoding.EncodingvalueOf(String name)Returns the enum constant of this type with the specified name.static FloatDataEncoding.Encoding[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IEEE754_1985
public static final FloatDataEncoding.Encoding IEEE754_1985
-
MILSTD_1750A
public static final FloatDataEncoding.Encoding MILSTD_1750A
-
STRING
public static final FloatDataEncoding.Encoding STRING
-
-
Method Detail
-
values
public static FloatDataEncoding.Encoding[] 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 (FloatDataEncoding.Encoding c : FloatDataEncoding.Encoding.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FloatDataEncoding.Encoding valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-