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