public enum LandingThresholdElevationAccuracyCompliance extends Enum<LandingThresholdElevationAccuracyCompliance>
Java class for LandingThresholdElevationAccuracyCompliance.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="LandingThresholdElevationAccuracyCompliance">
   <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 LandingThresholdElevationAccuracyCompliance | fromValue(String v) | 
| String | value() | 
| static LandingThresholdElevationAccuracyCompliance | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LandingThresholdElevationAccuracyCompliance[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LandingThresholdElevationAccuracyCompliance COMPLIANT
public static final LandingThresholdElevationAccuracyCompliance NOT_COMPLIANT
public static final LandingThresholdElevationAccuracyCompliance NOT_EVALUATED
public static LandingThresholdElevationAccuracyCompliance[] values()
for (LandingThresholdElevationAccuracyCompliance c : LandingThresholdElevationAccuracyCompliance.values()) System.out.println(c);
public static LandingThresholdElevationAccuracyCompliance 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 LandingThresholdElevationAccuracyCompliance fromValue(String v)
Copyright © 2020. All rights reserved.