public enum TypeType extends Enum<TypeType>
Java class for typeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="typeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="simple"/>
<enumeration value="extended"/>
<enumeration value="title"/>
<enumeration value="resource"/>
<enumeration value="locator"/>
<enumeration value="arc"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ARC |
EXTENDED |
LOCATOR |
RESOURCE |
SIMPLE |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static TypeType |
fromValue(String v) |
String |
value() |
static TypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeType SIMPLE
public static final TypeType EXTENDED
public static final TypeType TITLE
public static final TypeType RESOURCE
public static final TypeType LOCATOR
public static final TypeType ARC
public static TypeType[] values()
for (TypeType c : TypeType.values()) System.out.println(c);
public static TypeType 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()
Copyright © 2014 Digipost Open Source. All Rights Reserved.