public enum ResourceHandlerType extends Enum<ResourceHandlerType>
Enum Constant and Description |
---|
ANDROID
Android mechanism of storing resources in
res directory. |
CUSTOM
Custom type of resource handling.
|
RESOURCE_BUNDLE
Classic JRE mechanism of storing resources in resource bundles.
|
Modifier and Type | Method and Description |
---|---|
static ResourceHandlerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceHandlerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceHandlerType RESOURCE_BUNDLE
public static final ResourceHandlerType ANDROID
res
directory.public static final ResourceHandlerType CUSTOM
public static ResourceHandlerType[] values()
for (ResourceHandlerType c : ResourceHandlerType.values()) System.out.println(c);
public static ResourceHandlerType 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 © 2012-2014 Vektor Software. All Rights Reserved.