public enum RefType extends Enum<RefType>
Java class for refType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="refType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<whiteSpace value="collapse"/>
<enumeration value="page"/>
<enumeration value="pageindex"/>
<enumeration value="group"/>
<enumeration value="text"/>
<enumeration value="placeholder"/>
<enumeration value="frame"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FRAME |
GROUP |
PAGE |
PAGEINDEX |
PLACEHOLDER |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static RefType |
fromValue(String v) |
String |
value() |
static RefType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefType PAGE
public static final RefType PAGEINDEX
public static final RefType GROUP
public static final RefType TEXT
public static final RefType PLACEHOLDER
public static final RefType FRAME
public static RefType[] values()
for (RefType c : RefType.values()) System.out.println(c);
public static RefType 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 © 2017 SAP SE. All Rights Reserved.