public enum Status extends Enum<Status> implements FlowStatus
Enum Constant and Description |
---|
APPROVE
In more complex workflows an optional intermediate step maybe needed.
|
ARCHIVE
Content has been archived, and will not be reviewed not displayed.
|
DRAFT
The content is saved, but not intended for Public review, only internal review (Preview)
|
PUBLISH
Content is available for public review
|
Modifier and Type | Method and Description |
---|---|
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
name, ordinal
public static final Status DRAFT
public static final Status PUBLISH
public static final Status ARCHIVE
public static final Status APPROVE
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 nullCopyright © 2018. All rights reserved.