public enum SynchState extends java.lang.Enum<SynchState>
| Enum Constant and Description |
|---|
CLEAN |
CREATE_NEEDED |
DELETE_NEEDED |
EXPORT_NEEDED |
REFRESH_NEEDED |
| Modifier and Type | Method and Description |
|---|---|
static SynchState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SynchState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchState CLEAN
public static final SynchState REFRESH_NEEDED
public static final SynchState EXPORT_NEEDED
public static final SynchState CREATE_NEEDED
public static final SynchState DELETE_NEEDED
public static SynchState[] values()
for (SynchState c : SynchState.values()) System.out.println(c);
public static SynchState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null