Package com.chrt.api.types
Enum TrackingDeviceTypeEnum1.Value
- java.lang.Object
-
- java.lang.Enum<TrackingDeviceTypeEnum1.Value>
-
- com.chrt.api.types.TrackingDeviceTypeEnum1.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TrackingDeviceTypeEnum1.Value>
- Enclosing class:
- TrackingDeviceTypeEnum1
public static enum TrackingDeviceTypeEnum1.Value extends java.lang.Enum<TrackingDeviceTypeEnum1.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description D_15_N_TAGMTB_06_LABELT_3_D_TAGUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TrackingDeviceTypeEnum1.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TrackingDeviceTypeEnum1.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
D_15_N_TAG
public static final TrackingDeviceTypeEnum1.Value D_15_N_TAG
-
MTB_06_LABEL
public static final TrackingDeviceTypeEnum1.Value MTB_06_LABEL
-
T_3_D_TAG
public static final TrackingDeviceTypeEnum1.Value T_3_D_TAG
-
UNKNOWN
public static final TrackingDeviceTypeEnum1.Value UNKNOWN
-
-
Method Detail
-
values
public static TrackingDeviceTypeEnum1.Value[] 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 (TrackingDeviceTypeEnum1.Value c : TrackingDeviceTypeEnum1.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrackingDeviceTypeEnum1.Value 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 namejava.lang.NullPointerException- if the argument is null
-
-