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