Package org.bremersee.garmin.model
Enum Class WptSymbolCategory
- All Implemented Interfaces:
Serializable,Comparable<WptSymbolCategory>,Constable
The enum Wpt symbol category.
- Author:
- Christian Bremer
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCivil wpt symbol category.Hunting wpt symbol category.Marine wpt symbol category.Markers wpt symbol category.Navaids wpt symbol category.Outdoors wpt symbol category.Poi wpt symbol category.Signs wpt symbol category.Transportation wpt symbol category. -
Method Summary
Modifier and TypeMethodDescriptionstatic WptSymbolCategoryReturns the enum constant of this class with the specified name.static WptSymbolCategory[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MARKERS
Markers wpt symbol category. -
OUTDOORS
Outdoors wpt symbol category. -
HUNTING
Hunting wpt symbol category. -
MARINE
Marine wpt symbol category. -
CIVIL
Civil wpt symbol category. -
TRANSPORTATION
Transportation wpt symbol category. -
NAVAIDS
Navaids wpt symbol category. -
SIGNS
Signs wpt symbol category. -
POI
Poi wpt symbol category.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-