public enum SubmitStatus extends Enum<SubmitStatus>
Enum Constant and Description |
---|
ADDING |
DELETING |
REPLACEING |
Modifier and Type | Method and Description |
---|---|
static SubmitStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubmitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmitStatus ADDING
public static final SubmitStatus DELETING
public static final SubmitStatus REPLACEING
public static SubmitStatus[] values()
for (SubmitStatus c : SubmitStatus.values()) System.out.println(c);
public static SubmitStatus 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 © 2013 evolveum. All rights reserved.