public enum PlaceHolderType extends Enum<PlaceHolderType>
Java class for PlaceHolderType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PlaceHolderType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="style"/>
<enumeration value="link"/>
<enumeration value="ph"/>
<enumeration value="deleted"/>
<enumeration value="inserted"/>
<enumeration value="updated"/>
<enumeration value="memory100"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DELETED |
INSERTED |
LINK |
MEMORY_100 |
PH |
STYLE |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static PlaceHolderType |
fromValue(String v) |
String |
value() |
static PlaceHolderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlaceHolderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaceHolderType STYLE
public static final PlaceHolderType LINK
public static final PlaceHolderType PH
public static final PlaceHolderType DELETED
public static final PlaceHolderType INSERTED
public static final PlaceHolderType UPDATED
public static final PlaceHolderType MEMORY_100
public static PlaceHolderType[] values()
for (PlaceHolderType c : PlaceHolderType.values()) System.out.println(c);
public static PlaceHolderType 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 PlaceHolderType fromValue(String v)
Copyright © 2021. All rights reserved.