Package org.yamcs.xtce
Enum IntegerDataEncoding.Encoding
- java.lang.Object
-
- java.lang.Enum<IntegerDataEncoding.Encoding>
-
- org.yamcs.xtce.IntegerDataEncoding.Encoding
-
- All Implemented Interfaces:
Serializable,Comparable<IntegerDataEncoding.Encoding>
- Enclosing class:
- IntegerDataEncoding
public static enum IntegerDataEncoding.Encoding extends Enum<IntegerDataEncoding.Encoding>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONES_COMPLEMENTSIGN_MAGNITUDESTRINGTWOS_COMPLEMENTUNSIGNED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntegerDataEncoding.EncodingvalueOf(String name)Returns the enum constant of this type with the specified name.static IntegerDataEncoding.Encoding[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSIGNED
public static final IntegerDataEncoding.Encoding UNSIGNED
-
TWOS_COMPLEMENT
public static final IntegerDataEncoding.Encoding TWOS_COMPLEMENT
-
SIGN_MAGNITUDE
public static final IntegerDataEncoding.Encoding SIGN_MAGNITUDE
-
ONES_COMPLEMENT
public static final IntegerDataEncoding.Encoding ONES_COMPLEMENT
-
STRING
public static final IntegerDataEncoding.Encoding STRING
-
-
Method Detail
-
values
public static IntegerDataEncoding.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 (IntegerDataEncoding.Encoding c : IntegerDataEncoding.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 IntegerDataEncoding.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
-
-