|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ExtractOperationResult>
net.sf.sevenzipjbinding.ExtractOperationResult
public enum ExtractOperationResult
Enumeration of possible operation results by extracting operations.
| Enum Constant Summary | |
|---|---|
CRCERROR
Extraction failed: CRC-check failed |
|
DATAERROR
Extraction failed: data error |
|
OK
Extraction was a success |
|
UNKNOWN_OPERATION_RESULT
Unknown extract operation result |
|
UNSUPPORTEDMETHOD
Extraction failed: unknown compression method |
|
| Method Summary | |
|---|---|
static ExtractOperationResult |
getOperationResult(int index)
Return extract operations enumeration item by index |
static ExtractOperationResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExtractOperationResult[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ExtractOperationResult OK
public static final ExtractOperationResult UNSUPPORTEDMETHOD
public static final ExtractOperationResult DATAERROR
public static final ExtractOperationResult CRCERROR
public static final ExtractOperationResult UNKNOWN_OPERATION_RESULT
| Method Detail |
|---|
public static ExtractOperationResult[] values()
for (ExtractOperationResult c : ExtractOperationResult.values()) System.out.println(c);
public static ExtractOperationResult 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 name
java.lang.NullPointerException - if the argument is nullpublic static ExtractOperationResult getOperationResult(int index)
index - index of enumeration item
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||