Enum GPSStatus.EnumType
- java.lang.Object
-
- java.lang.Enum<GPSStatus.EnumType>
-
- net.heberling.ismart.asn1.v2_1.entity.GPSStatus.EnumType
-
- All Implemented Interfaces:
Serializable,Comparable<GPSStatus.EnumType>
- Enclosing class:
- GPSStatus
public static enum GPSStatus.EnumType extends Enum<GPSStatus.EnumType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description fix2Dfix3DnoGpsSignaltimeFix
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GPSStatus.EnumTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GPSStatus.EnumType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
noGpsSignal
public static final GPSStatus.EnumType noGpsSignal
-
timeFix
public static final GPSStatus.EnumType timeFix
-
fix2D
public static final GPSStatus.EnumType fix2D
-
fix3D
public static final GPSStatus.EnumType fix3D
-
-
Method Detail
-
values
public static GPSStatus.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 (GPSStatus.EnumType c : GPSStatus.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 GPSStatus.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
-
-