public enum StandardContentType extends java.lang.Enum<StandardContentType>
Content.| Enum Constant and Description |
|---|
ATTACHMENT |
BLOGPOST |
COMMENT |
PAGE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getIdentifier()
This method returns the identifier for the type.
|
static StandardContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardContentType PAGE
public static final StandardContentType BLOGPOST
public static final StandardContentType COMMENT
public static final StandardContentType ATTACHMENT
public static StandardContentType[] values()
for (StandardContentType c : StandardContentType.values()) System.out.println(c);
public static StandardContentType 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()