public enum DisplayTypeType extends Enum<DisplayTypeType>
Java class for DisplayTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DisplayTypeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="plain"/>
<enumeration value="search"/>
<enumeration value="internalUrl"/>
<enumeration value="externalUrl"/>
<enumeration value="documentExternalUrl"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DOCUMENT_EXTERNAL_URL |
EXTERNAL_URL |
INTERNAL_URL |
PLAIN |
SEARCH |
| Modifier and Type | Method and Description |
|---|---|
static DisplayTypeType |
fromValue(String v) |
String |
value() |
static DisplayTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayTypeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayTypeType PLAIN
public static final DisplayTypeType SEARCH
public static final DisplayTypeType INTERNAL_URL
public static final DisplayTypeType EXTERNAL_URL
public static final DisplayTypeType DOCUMENT_EXTERNAL_URL
public static DisplayTypeType[] values()
for (DisplayTypeType c : DisplayTypeType.values()) System.out.println(c);
public static DisplayTypeType 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 DisplayTypeType fromValue(String v)
Copyright © 2017. All rights reserved.