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