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