Enum Constant and Description |
---|
LE_1M
A Physical Layer (PHY) connection of 1 mbit.
|
LE_2M
A Physical Layer (PHY) connection of 2 mbit.
|
LE_CODED
A Physical Layer (PHY) connection with long range.
|
UNKNOWN_PHY_TYPE
Unknown Phy Type.
|
Modifier and Type | Method and Description |
---|---|
static @NotNull PhyType |
fromValue(int value) |
static PhyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhyType LE_1M
public static final PhyType LE_2M
public static final PhyType LE_CODED
public static final PhyType UNKNOWN_PHY_TYPE
public static PhyType[] values()
for (PhyType c : PhyType.values()) System.out.println(c);
public static PhyType 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@NotNull public static @NotNull PhyType fromValue(int value)