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