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