public enum SynchronizationStatus extends Enum<SynchronizationStatus> implements Serializable
= Etat de saisie
| Enum Constant and Description |
|---|
DELETED |
DIRTY |
READY_TO_SYNCHRONIZE |
SYNCHRONIZED |
| Modifier and Type | Method and Description |
|---|---|
static SynchronizationStatus |
fromString(String value)
Creates an instance of SynchronizationStatus from
value. |
String |
getName()
Gets the underlying name of this type safe enumeration.
|
String |
getValue()
Gets the underlying value of this type safe enumeration.
|
boolean |
hasInitError() |
static List<String> |
literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.
|
static List<String> |
names()
Returns an unmodifiable list containing the names of the literals that are known
by this enumeration.
|
String |
toString() |
static SynchronizationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronizationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronizationStatus SYNCHRONIZED
public static final SynchronizationStatus READY_TO_SYNCHRONIZE
public static final SynchronizationStatus DIRTY
public static final SynchronizationStatus DELETED
public static SynchronizationStatus[] values()
for (SynchronizationStatus c : SynchronizationStatus.values()) System.out.println(c);
public static SynchronizationStatus 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 nullpublic boolean hasInitError()
public String toString()
toString in class Enum<SynchronizationStatus>Object.toString()public static SynchronizationStatus fromString(String value)
value.value - the value to create the SynchronizationStatus from.public String getValue()
public String getName()
public static List<String> literals()
Copyright © 2013. All Rights Reserved.