public enum RadioBand extends Enum<RadioBand>
| Modifier and Type | Method and Description |
|---|---|
static RadioBand |
valueForString(String value) |
static RadioBand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RadioBand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadioBand AM
public static final RadioBand FM
public static final RadioBand XM
public static RadioBand[] values()
for (RadioBand c : RadioBand.values()) System.out.println(c);
public static RadioBand valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null