Enum Constant and Description |
---|
BPS_115200 |
BPS_1200 |
BPS_14400 |
BPS_19200 |
BPS_2400 |
BPS_28800 |
BPS_300 |
BPS_38400 |
BPS_4800 |
BPS_57600 |
BPS_9600 |
Modifier and Type | Method and Description |
---|---|
static BitRate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BitRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitRate BPS_300
public static final BitRate BPS_1200
public static final BitRate BPS_2400
public static final BitRate BPS_4800
public static final BitRate BPS_9600
public static final BitRate BPS_14400
public static final BitRate BPS_19200
public static final BitRate BPS_28800
public static final BitRate BPS_38400
public static final BitRate BPS_57600
public static final BitRate BPS_115200
public static BitRate[] values()
for (BitRate c : BitRate.values()) System.out.println(c);
public static BitRate 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