public static enum RarException.RarExceptionType extends Enum<RarException.RarExceptionType>
| Enum Constant and Description |
|---|
badRarArchive |
crcError |
headerNotInArchive |
ioError |
notImplementedYet |
notRarArchive |
rarEncryptedException |
unkownError |
wrongHeaderType |
| Modifier and Type | Method and Description |
|---|---|
static RarException.RarExceptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RarException.RarExceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RarException.RarExceptionType notImplementedYet
public static final RarException.RarExceptionType crcError
public static final RarException.RarExceptionType notRarArchive
public static final RarException.RarExceptionType badRarArchive
public static final RarException.RarExceptionType unkownError
public static final RarException.RarExceptionType headerNotInArchive
public static final RarException.RarExceptionType wrongHeaderType
public static final RarException.RarExceptionType ioError
public static final RarException.RarExceptionType rarEncryptedException
public static RarException.RarExceptionType[] values()
for (RarException.RarExceptionType c : RarException.RarExceptionType.values()) System.out.println(c);
public static RarException.RarExceptionType 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.