|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FailReason.FailType>
com.nostra13.universalimageloader.core.assist.FailReason.FailType
public static enum FailReason.FailType
Presents type of fail while image loading
Enum Constant Summary | |
---|---|
DECODING_ERROR
Error while decode image to Bitmap |
|
IO_ERROR
Input/output error. |
|
NETWORK_DENIED
Network downloads are denied and requested image wasn't cached in disk cache before. |
|
OUT_OF_MEMORY
Not enough memory to create needed Bitmap for image |
|
UNKNOWN
Unknown error was occurred while loading image |
Method Summary | |
---|---|
static FailReason.FailType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FailReason.FailType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 FailReason.FailType IO_ERROR
public static final FailReason.FailType DECODING_ERROR
public static final FailReason.FailType NETWORK_DENIED
public static final FailReason.FailType OUT_OF_MEMORY
public static final FailReason.FailType UNKNOWN
Method Detail |
---|
public static FailReason.FailType[] values()
for (FailReason.FailType c : FailReason.FailType.values()) System.out.println(c);
public static FailReason.FailType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |