public enum RunwayAccuracyCompliance extends Enum<RunwayAccuracyCompliance>
Java class for RunwayAccuracyCompliance.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="RunwayAccuracyCompliance">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Compliant"/>
     <enumeration value="NotCompliant"/>
     <enumeration value="NotEvaluated"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| COMPLIANT | 
| NOT_COMPLIANT | 
| NOT_EVALUATED | 
| Modifier and Type | Method and Description | 
|---|---|
| static RunwayAccuracyCompliance | fromValue(String v) | 
| String | value() | 
| static RunwayAccuracyCompliance | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RunwayAccuracyCompliance[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RunwayAccuracyCompliance COMPLIANT
public static final RunwayAccuracyCompliance NOT_COMPLIANT
public static final RunwayAccuracyCompliance NOT_EVALUATED
public static RunwayAccuracyCompliance[] values()
for (RunwayAccuracyCompliance c : RunwayAccuracyCompliance.values()) System.out.println(c);
public static RunwayAccuracyCompliance 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 RunwayAccuracyCompliance fromValue(String v)
Copyright © 2020. All rights reserved.