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