public static enum ResourceManager.Resource.SOURCE extends Enum<ResourceManager.Resource.SOURCE>
Enum Constant and Description |
---|
CLASSPATH |
FILE |
INLINE |
NOTFOUND |
STREAM |
URL |
ZIP |
Modifier and Type | Method and Description |
---|---|
static ResourceManager.Resource.SOURCE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceManager.Resource.SOURCE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceManager.Resource.SOURCE FILE
public static final ResourceManager.Resource.SOURCE CLASSPATH
public static final ResourceManager.Resource.SOURCE STREAM
public static final ResourceManager.Resource.SOURCE URL
public static final ResourceManager.Resource.SOURCE ZIP
public static final ResourceManager.Resource.SOURCE INLINE
public static final ResourceManager.Resource.SOURCE NOTFOUND
public static ResourceManager.Resource.SOURCE[] values()
for (ResourceManager.Resource.SOURCE c : ResourceManager.Resource.SOURCE.values()) System.out.println(c);
public static ResourceManager.Resource.SOURCE 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 © 2016. All rights reserved.