Enum Class Symbols.Category

java.lang.Object
java.lang.Enum<Symbols.Category>
org.ka2ddo.aprs.Symbols.Category
All Implemented Interfaces:
Serializable, Comparable<Symbols.Category>, Constable
Enclosing class:
Symbols

public static enum Symbols.Category extends Enum<Symbols.Category>
Indicate the type of station or object associated with a symbol table ID and code tuple.
Author:
Andrew Pavlin, KA2DDO
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Symbol for a digipeater station that relays other stations' traffic over RF.
    Symbol for a fixed station such as a home QTH.
    Symbol for an I-gate station that relays other stations' traffic between RF and Internet.
    Symbol for a mobile station that needs mirror imaging if rotated past +/- 90 degrees.
    Symbol for a mobile station that doesn't need mirror imaging.
    Symbol for a non-weather-related Object or Item.
    Symbol that doesn't fall into any of the other categories.
    Symbol for a weather event (storm or related localized weather conditions).
    Symbol for a weather station.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • MOBILE

      public static final Symbols.Category MOBILE
      Symbol for a mobile station that needs mirror imaging if rotated past +/- 90 degrees.
    • MOBILE_NOFLIP

      public static final Symbols.Category MOBILE_NOFLIP
      Symbol for a mobile station that doesn't need mirror imaging.
    • WX

      public static final Symbols.Category WX
      Symbol for a weather station.
    • DIGI

      public static final Symbols.Category DIGI
      Symbol for a digipeater station that relays other stations' traffic over RF.
    • IGATE

      public static final Symbols.Category IGATE
      Symbol for an I-gate station that relays other stations' traffic between RF and Internet.
    • HOME

      public static final Symbols.Category HOME
      Symbol for a fixed station such as a home QTH.
    • OBJECT

      public static final Symbols.Category OBJECT
      Symbol for a non-weather-related Object or Item.
    • OTHER

      public static final Symbols.Category OTHER
      Symbol that doesn't fall into any of the other categories.
    • WEATHER

      public static final Symbols.Category WEATHER
      Symbol for a weather event (storm or related localized weather conditions).
  • Method Details

    • values

      public static Symbols.Category[] 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

      public static Symbols.Category valueOf(String name)
      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 name
      NullPointerException - if the argument is null