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