public enum LoadingMessages extends Enum<LoadingMessages>
| Enum Constant and Description |
|---|
EMPTY_SCHEME |
ILLEGAL_SCHEME |
INVALID_URI |
NULL_SCHEME |
NULL_URI |
REDIRECT_TO_SELF |
REF_NOT_ABSOLUTE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LoadingMessages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadingMessages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadingMessages NULL_SCHEME
public static final LoadingMessages EMPTY_SCHEME
public static final LoadingMessages ILLEGAL_SCHEME
public static final LoadingMessages NULL_URI
public static final LoadingMessages INVALID_URI
public static final LoadingMessages REF_NOT_ABSOLUTE
public static final LoadingMessages REDIRECT_TO_SELF
public static LoadingMessages[] values()
for (LoadingMessages c : LoadingMessages.values()) System.out.println(c);
public static LoadingMessages 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 nullpublic String toString()
toString in class Enum<LoadingMessages>Copyright © 2013. All Rights Reserved.