public enum BooleanType extends Enum<BooleanType>
Java class for booleanType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="booleanType"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="true"/> <enumeration value="false"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static BooleanType |
fromValue(String v) |
String |
value() |
static BooleanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanType TRUE
public static final BooleanType FALSE
public static BooleanType[] values()
for (BooleanType c : BooleanType.values()) System.out.println(c);
public static BooleanType 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 BooleanType fromValue(String v)
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.