Enum MP_AlarmSettingType.EnumType
- java.lang.Object
-
- java.lang.Enum<MP_AlarmSettingType.EnumType>
-
- net.heberling.ismart.asn1.v1_1.entity.MP_AlarmSettingType.EnumType
-
- All Implemented Interfaces:
Serializable,Comparable<MP_AlarmSettingType.EnumType>
- Enclosing class:
- MP_AlarmSettingType
public static enum MP_AlarmSettingType.EnumType extends Enum<MP_AlarmSettingType.EnumType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description abnormalengineStartmovingoffCarregionspeedingstartVehicleStatus
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MP_AlarmSettingType.EnumTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MP_AlarmSettingType.EnumType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
abnormal
public static final MP_AlarmSettingType.EnumType abnormal
-
moving
public static final MP_AlarmSettingType.EnumType moving
-
region
public static final MP_AlarmSettingType.EnumType region
-
engineStart
public static final MP_AlarmSettingType.EnumType engineStart
-
startVehicleStatus
public static final MP_AlarmSettingType.EnumType startVehicleStatus
-
offCar
public static final MP_AlarmSettingType.EnumType offCar
-
speeding
public static final MP_AlarmSettingType.EnumType speeding
-
-
Method Detail
-
values
public static MP_AlarmSettingType.EnumType[] 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 (MP_AlarmSettingType.EnumType c : MP_AlarmSettingType.EnumType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MP_AlarmSettingType.EnumType 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
-
-