|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.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 |
|
DATA_AFTER_END
There are some data after the end of the payload data. |
|
DATAERROR
Extraction failed: data error |
|
HEADERS_ERROR
The data doesn't look like an archive. |
|
IS_NOT_ARC
|
|
OK
Extraction was a success |
|
UNAVAILABLE
Archive data is unavailable. |
|
UNEXPECTED_END
Archive ends unexpected. |
|
UNKNOWN_OPERATION_RESULT
Unknown extract operation result |
|
UNSUPPORTEDMETHOD
Extraction failed: unknown compression method |
|
WRONG_PASSWORD
Wrong password. |
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're 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 UNAVAILABLE
public static final ExtractOperationResult UNEXPECTED_END
public static final ExtractOperationResult DATA_AFTER_END
public static final ExtractOperationResult IS_NOT_ARC
public static final ExtractOperationResult HEADERS_ERROR
public static final ExtractOperationResult WRONG_PASSWORD
public static final ExtractOperationResult UNKNOWN_OPERATION_RESULT
Method Detail |
---|
public static final 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 namepublic 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 |