public enum FrequencyUnits extends Enum<FrequencyUnits>
Java class for FrequencyUnits.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="FrequencyUnits">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="LowFreq"/>
     <enumeration value="MediumFreq"/>
     <enumeration value="HighFreq"/>
     <enumeration value="Vhf100kHzSpacing"/>
     <enumeration value="Vhf50kHzSpacing"/>
     <enumeration value="Vhf25kHzSpacing"/>
     <enumeration value="VhfNonStandard"/>
     <enumeration value="Uhf"/>
     <enumeration value="Vhf8_33Spacing"/>
     <enumeration value="DigitalService"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| DIGITAL_SERVICEDigital Service | 
| HIGH_FREQHigh Frequency(3000 kHz to 30,000 kHz) | 
| LOW_FREQLow Frequency | 
| MEDIUM_FREQMedium Frequency | 
| UHFUltra High Frequency (200 MHz to 3000 MHz) | 
| VHF_100_K_HZ_SPACINGVery High Frequency 100 kHz spacing | 
| VHF_25_K_HZ_SPACINGVery High Frequency 25 kHz spacing | 
| VHF_50_K_HZ_SPACINGVery High Frequency 50 kHz spacing | 
| VHF_8_33_SPACINGVery High Frequency Communication Channel for 8.33kHz spacing | 
| VHF_NON_STANDARDVery High Frequency (30,000 kHz to 200 MHz) Non-standard spacing | 
| Modifier and Type | Method and Description | 
|---|---|
| static FrequencyUnits | fromValue(String v) | 
| String | value() | 
| static FrequencyUnits | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FrequencyUnits[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FrequencyUnits LOW_FREQ
public static final FrequencyUnits MEDIUM_FREQ
public static final FrequencyUnits HIGH_FREQ
public static final FrequencyUnits VHF_100_K_HZ_SPACING
public static final FrequencyUnits VHF_50_K_HZ_SPACING
public static final FrequencyUnits VHF_25_K_HZ_SPACING
public static final FrequencyUnits VHF_NON_STANDARD
public static final FrequencyUnits UHF
public static final FrequencyUnits VHF_8_33_SPACING
public static final FrequencyUnits DIGITAL_SERVICE
public static FrequencyUnits[] values()
for (FrequencyUnits c : FrequencyUnits.values()) System.out.println(c);
public static FrequencyUnits 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 String value()
public static FrequencyUnits fromValue(String v)
Copyright © 2020. All rights reserved.