public enum DataCreationState extends Enum<DataCreationState>
| Enum Constant and Description |
|---|
Created |
Failed |
NotScheduled |
Scheduled |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static DataCreationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataCreationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCreationState Unknown
public static final DataCreationState NotScheduled
public static final DataCreationState Scheduled
public static final DataCreationState Failed
public static final DataCreationState Created
public static DataCreationState[] values()
for (DataCreationState c : DataCreationState.values()) System.out.println(c);
public static DataCreationState 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 © 2005–2018 Alfresco Software. All rights reserved.