public enum DraftFlow extends Enum<DraftFlow>
| Enum Constant and Description |
|---|
DRAFT_ACTIVATE_FROMEXISTING |
DRAFT_ACTIVATE_FROMNEW |
DRAFT_AUTO_UPDATE |
DRAFT_CREATE_NEW |
DRAFT_EDIT |
QUERY_ALL |
QUERY_LOCKEDBYOTHER |
QUERY_NOTSUPPORTED |
QUERY_OWNDRAFTS |
QUERY_ROOT |
QUERY_UNCHANGED |
QUERY_UNSAVED |
| Modifier and Type | Method and Description |
|---|---|
static DraftFlow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DraftFlow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DraftFlow DRAFT_CREATE_NEW
public static final DraftFlow DRAFT_AUTO_UPDATE
public static final DraftFlow DRAFT_ACTIVATE_FROMNEW
public static final DraftFlow DRAFT_EDIT
public static final DraftFlow DRAFT_ACTIVATE_FROMEXISTING
public static final DraftFlow QUERY_OWNDRAFTS
public static final DraftFlow QUERY_UNCHANGED
public static final DraftFlow QUERY_ALL
public static final DraftFlow QUERY_UNSAVED
public static final DraftFlow QUERY_LOCKEDBYOTHER
public static final DraftFlow QUERY_NOTSUPPORTED
public static final DraftFlow QUERY_ROOT
public static DraftFlow[] values()
for (DraftFlow c : DraftFlow.values()) System.out.println(c);
public static DraftFlow 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 © 2020 SAP. All Rights Reserved.