public enum ContentBodyType extends java.lang.Enum<ContentBodyType>
ContentBody.| Enum Constant and Description |
|---|
ANONYMOUS_EXPORT_VIEW |
EDITOR2 |
EXPORT_VIEW |
STORAGE |
STYLED_VIEW |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getIdentifier()
This method returns the unique identifier for the body type.
|
static ContentBodyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContentBodyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentBodyType ANONYMOUS_EXPORT_VIEW
public static final ContentBodyType EDITOR2
public static final ContentBodyType EXPORT_VIEW
public static final ContentBodyType STORAGE
public static final ContentBodyType STYLED_VIEW
public static final ContentBodyType VIEW
public static ContentBodyType[] values()
for (ContentBodyType c : ContentBodyType.values()) System.out.println(c);
public static ContentBodyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getIdentifier()