public enum Radar extends Enum<Radar>
Java class for Radar.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="Radar">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="PrimaryOrSecondary"/>
     <enumeration value="No"/>
     <enumeration value="Unknown"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| NOIf the Service documentation specifically states that the service does not have access  to primary or secondary radar information | 
| PRIMARY_OR_SECONDARYPrimary or secondary Radar information is available to the service | 
| UNKNOWNIf the Source documentation does not provide details on the radar information access for the services | 
| Modifier and Type | Method and Description | 
|---|---|
| static Radar | fromValue(String v) | 
| String | value() | 
| static Radar | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Radar[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Radar PRIMARY_OR_SECONDARY
public static final Radar NO
public static final Radar UNKNOWN
public static Radar[] values()
for (Radar c : Radar.values()) System.out.println(c);
public static Radar 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()
Copyright © 2020. All rights reserved.