public enum PhyOptions extends java.lang.Enum<PhyOptions>
| Enum Constant and Description |
|---|
NO_PREFERRED
No preferred option.
|
S2
Prefer 2x range option with throughput of +/- 500 Kbps
|
S8
Prefer 4x range option with throughput of +/- 125 Kbps
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
static PhyOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhyOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhyOptions NO_PREFERRED
public static final PhyOptions S2
public static final PhyOptions S8
public static PhyOptions[] values()
for (PhyOptions c : PhyOptions.values()) System.out.println(c);
public static PhyOptions 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