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="R"/> <enumeration value="N"/> <enumeration value="U"/> </restriction> </simpleType>
Enum Constant and Description |
---|
N
If the Service documentation specifically states that the service does not have access to primary or secondary radar information
|
R
Primary or secondary Radar information is available to the service
|
U
If 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 R
public static final Radar N
public static final Radar U
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 © 2017. All rights reserved.