public enum ProfileNames extends Enum<ProfileNames>
Java class for profileNames.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="profileNames"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Core"/> <enumeration value="Interchange"/> <enumeration value="CADInterchange"/> <enumeration value="Interactive"/> <enumeration value="Immersive"/> <enumeration value="MPEG4Interactive"/> <enumeration value="Full"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CAD_INTERCHANGE |
CORE |
FULL |
IMMERSIVE |
INTERACTIVE |
INTERCHANGE |
MPEG_4_INTERACTIVE |
Modifier and Type | Method and Description |
---|---|
static ProfileNames |
fromValue(String v) |
String |
value() |
static ProfileNames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileNames CORE
public static final ProfileNames INTERCHANGE
public static final ProfileNames CAD_INTERCHANGE
public static final ProfileNames INTERACTIVE
public static final ProfileNames IMMERSIVE
public static final ProfileNames MPEG_4_INTERACTIVE
public static final ProfileNames FULL
public static ProfileNames[] values()
for (ProfileNames c : ProfileNames.values()) System.out.println(c);
public static ProfileNames 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 ProfileNames fromValue(String v)