public enum ChecksumErrorHandler extends Enum<ChecksumErrorHandler> implements ESChecksumErrorHandler
| Enum Constant and Description |
|---|
AUTOCORRECT
Fixes the checksum comparison failure by deleting the
ProjectSpace that got
in an inconsistent state and checking it out again.Note: all references to the project space that will be deleted should to be taken care of. |
CANCEL
Aborts execution of the caller.
|
LOG
Logs the checksum comparison failure and continues execution of the caller.
|
LOG_DETAILED
Logs the checksum comparison failure detailed: the serialization of both project spaces is written in seperate
files.
|
LOG_DETAILED_AND_CANCEL
Logs the checksum comparison failure detailed: the serialization of both project spaces is written in seperate
files.
|
| Modifier and Type | Method and Description |
|---|---|
static ChecksumErrorHandler |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecksumErrorHandler[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfexecutepublic static final ChecksumErrorHandler LOG
public static final ChecksumErrorHandler LOG_DETAILED
public static final ChecksumErrorHandler LOG_DETAILED_AND_CANCEL
public static final ChecksumErrorHandler CANCEL
public static final ChecksumErrorHandler AUTOCORRECT
ProjectSpace that got
in an inconsistent state and checking it out again.public static ChecksumErrorHandler[] values()
for (ChecksumErrorHandler c : ChecksumErrorHandler.values()) System.out.println(c);
public static ChecksumErrorHandler 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 nullCopyright © 2017. All rights reserved.