@OpenApiAll public enum SyncMode extends java.lang.Enum<SyncMode>
Modifier and Type | Method and Description |
---|---|
static SyncMode |
getDefault()
Get default SyncMode
|
static java.util.List<java.lang.String> |
getValues()
Returns values of choices
|
java.lang.String |
toString() |
static SyncMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyncMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncMode AUTO
public static final SyncMode MANUAL
public static final SyncMode NONE
public static SyncMode[] values()
for (SyncMode c : SyncMode.values()) System.out.println(c);
public static SyncMode 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<SyncMode>
public static SyncMode getDefault()
public static java.util.List<java.lang.String> getValues()