Enum Constant and Description |
---|
GLOBAL
Packet can be transmitted through both RF and APRS-IS (Internet) ports, and the digipeater list won't contain RFONLY or NOGATE,
|
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).
|
PRIVATE
Packet should not be transmitted at all, but was created only to display information on the local screen.
|
Modifier and Type | Method and Description |
---|---|
static Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope PRIVATE
public static final Scope LOCAL
public static final Scope GLOBAL
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null