public static enum TuneIfc.TuneResult extends java.lang.Enum<TuneIfc.TuneResult>
TuneIfc.tuneForRepeater(AX25Message)
method.Enum Constant and Description |
---|
INVALID_MSG
The specified
AX25Message does not describe a repeater. |
NOT_OFF_APRS
Frequency not changed because either dual radio or single radio that is still on APRS frequency.
|
OTHER_ERROR
The tuning attempt failed for some other reason not listed in this enum.
|
SUCCESS
Tuning attempt succeeded.
|
UNSUPPORTED_FREQ
The radio does not support the frequency in the message.
|
UNSUPPORTED_MODE
The radio does not support the modulation mode in the message.
|
UNTUNABLE_RADIO
The radio is untunable because the configuration of the implementor does not support it.
|
Modifier and Type | Method and Description |
---|---|
static TuneIfc.TuneResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TuneIfc.TuneResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TuneIfc.TuneResult SUCCESS
public static final TuneIfc.TuneResult UNSUPPORTED_FREQ
public static final TuneIfc.TuneResult UNSUPPORTED_MODE
public static final TuneIfc.TuneResult UNTUNABLE_RADIO
public static final TuneIfc.TuneResult INVALID_MSG
AX25Message
does not describe a repeater.public static final TuneIfc.TuneResult NOT_OFF_APRS
public static final TuneIfc.TuneResult OTHER_ERROR
public static TuneIfc.TuneResult[] values()
for (TuneIfc.TuneResult c : TuneIfc.TuneResult.values()) System.out.println(c);
public static TuneIfc.TuneResult 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