public enum X3DVersion extends Enum<X3DVersion>
Java class for metaDirectionValues.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="x3dVersion"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="3.0"/> <enumeration value="3.1"/> <enumeration value="3.2"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static X3DVersion |
fromValue(String v) |
String |
value() |
static X3DVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X3DVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X3DVersion X3D_3_0
public static final X3DVersion X3D_3_1
public static final X3DVersion X3D_3_2
public static X3DVersion[] values()
for (X3DVersion c : X3DVersion.values()) System.out.println(c);
public static X3DVersion 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 X3DVersion fromValue(String v)