Enum Class Scope

java.lang.Object
java.lang.Enum<Scope>
org.ka2ddo.ax25.Scope
All Implemented Interfaces:
Serializable, Comparable<Scope>, Constable

public enum Scope extends Enum<Scope>
Define the range over which the tagged packet should be transmitted.
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
    Packet can be transmitted through both RF and APRS-IS (Internet) ports, and the digipeater list won't contain RFONLY or NOGATE,
    Packet should be transmitted only through RF ports and should be tagged in the digipeater list as RFONLY and NOGATE (to prevent I-gates from forwarding the packet to the Internet).
    Packet should not be transmitted at all, but was created only to display information on the local screen.
  • Method Summary

    Modifier and Type
    Method
    Description
    static Scope
    Returns the enum constant of this class with the specified name.
    static Scope[]
    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

    • PRIVATE

      public static final Scope PRIVATE
      Packet should not be transmitted at all, but was created only to display information on the local screen.
    • LOCAL

      public static final Scope LOCAL
      Packet should be transmitted only through RF ports and should be tagged in the digipeater list as RFONLY and NOGATE (to prevent I-gates from forwarding the packet to the Internet).
    • GLOBAL

      public static final Scope GLOBAL
      Packet can be transmitted through both RF and APRS-IS (Internet) ports, and the digipeater list won't contain RFONLY or NOGATE,
  • Method Details

    • values

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