public enum PublishableStatus extends Enum<PublishableStatus>
Enum Constant and Description |
---|
any |
auto_draft |
draft |
future |
inherit |
pending |
private_ |
publish |
trash |
Modifier and Type | Method and Description |
---|---|
static PublishableStatus |
fromString(String arg) |
static PublishableStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublishableStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishableStatus publish
public static final PublishableStatus future
public static final PublishableStatus draft
public static final PublishableStatus pending
public static final PublishableStatus private_
public static final PublishableStatus trash
public static final PublishableStatus auto_draft
public static final PublishableStatus inherit
public static final PublishableStatus any
public static PublishableStatus[] values()
for (PublishableStatus c : PublishableStatus.values()) System.out.println(c);
public static PublishableStatus 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 static PublishableStatus fromString(String arg)
arg
- Apache Camel