public enum ChannelSpacing extends Enum<ChannelSpacing>
Enum Constant and Description |
---|
CHL_0GHZ |
CHL_100GHZ |
CHL_12P5GHZ |
CHL_25GHZ |
CHL_50GHZ |
CHL_6P25GHZ |
Modifier and Type | Method and Description |
---|---|
Frequency |
frequency() |
static ChannelSpacing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelSpacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelSpacing CHL_100GHZ
public static final ChannelSpacing CHL_50GHZ
public static final ChannelSpacing CHL_25GHZ
public static final ChannelSpacing CHL_12P5GHZ
public static final ChannelSpacing CHL_6P25GHZ
public static final ChannelSpacing CHL_0GHZ
public static ChannelSpacing[] values()
for (ChannelSpacing c : ChannelSpacing.values()) System.out.println(c);
public static ChannelSpacing 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 nullpublic Frequency frequency()