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