|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Scope>
org.ka2ddo.ax25.Scope
public enum Scope
Define the range over which this object should be transmitted.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Scope PRIVATE
public static final Scope LOCAL
public static final Scope GLOBAL
| Method Detail |
|---|
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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||