Enum Class MonitorType

java.lang.Object
java.lang.Enum<MonitorType>
org.ka2ddo.yaac.healthmonitor.MonitorType
All Implemented Interfaces:
Serializable, Comparable<MonitorType>, Constable

public enum MonitorType extends Enum<MonitorType>
This enumeration specifies the different types of monitoring that should be done for a remote station.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

    • APRS

      public static final MonitorType APRS
      Station should be beaconing on APRS.
    • OPENTRAC

      public static final MonitorType OPENTRAC
      Station should be beaconing on OpenTRAC.
    • DIGIPEATER

      public static final MonitorType DIGIPEATER
      Station should be digipeating other stations.
    • IGATE

      public static final MonitorType IGATE
      Station should be I-gating other stations to or from the APRS-IS.
    • WEATHER

      public static final MonitorType WEATHER
      Station should be reporting weather information.
  • Method Details

    • values

      public static MonitorType[] 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 MonitorType 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