public enum ImportSynchState extends java.lang.Enum<ImportSynchState>
Enum Constant and Description |
---|
CLEAN |
DELETE_NEEDED |
IMPORT_NEEDED |
REFRESH_NEEDED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ImportSynchState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportSynchState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportSynchState CLEAN
public static final ImportSynchState UNKNOWN
public static final ImportSynchState REFRESH_NEEDED
public static final ImportSynchState IMPORT_NEEDED
public static final ImportSynchState DELETE_NEEDED
public static ImportSynchState[] values()
for (ImportSynchState c : ImportSynchState.values()) System.out.println(c);
public static ImportSynchState 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