public static enum ExtractReaderException.TYPE extends Enum<ExtractReaderException.TYPE>
Enum Constant and Description |
---|
EXTRACT_FILE_TOO_LONG |
EXTRACT_FILE_TOO_SHORT |
EXTRACT_PARSE_EXCEPTION |
INCORRECT_EXTRACT_FILE_SUFFIX |
IO_EXCEPTION |
NO_EXTRACT_FILE |
ZERO_BYTE_EXTRACT_FILE |
Modifier and Type | Method and Description |
---|---|
static ExtractReaderException.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractReaderException.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractReaderException.TYPE NO_EXTRACT_FILE
public static final ExtractReaderException.TYPE ZERO_BYTE_EXTRACT_FILE
public static final ExtractReaderException.TYPE IO_EXCEPTION
public static final ExtractReaderException.TYPE EXTRACT_PARSE_EXCEPTION
public static final ExtractReaderException.TYPE EXTRACT_FILE_TOO_SHORT
public static final ExtractReaderException.TYPE EXTRACT_FILE_TOO_LONG
public static final ExtractReaderException.TYPE INCORRECT_EXTRACT_FILE_SUFFIX
public static ExtractReaderException.TYPE[] values()
for (ExtractReaderException.TYPE c : ExtractReaderException.TYPE.values()) System.out.println(c);
public static ExtractReaderException.TYPE 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 © 2007–2020 The Apache Software Foundation. All rights reserved.