public enum SubmittedStatus extends Enum<SubmittedStatus>
Enum Constant and Description |
---|
Completed |
Error |
Generating |
Pending |
Publishing |
Simulating |
Modifier and Type | Method and Description |
---|---|
static SubmittedStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubmittedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmittedStatus Pending
public static final SubmittedStatus Simulating
public static final SubmittedStatus Generating
public static final SubmittedStatus Publishing
public static final SubmittedStatus Completed
public static final SubmittedStatus Error
public static SubmittedStatus[] values()
for (SubmittedStatus c : SubmittedStatus.values()) System.out.println(c);
public static SubmittedStatus 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 © 2017. All Rights Reserved.