public enum ResourceBundleProvider extends java.lang.Enum<ResourceBundleProvider> implements ResourceProvider
| Enum Constant and Description |
|---|
BUNDLE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
get(Operator operator,
java.util.Locale locale) |
java.lang.String |
get(java.lang.String key,
java.util.Locale locale) |
void |
register(java.lang.String bundleBaseName) |
static ResourceBundleProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceBundleProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceBundleProvider BUNDLE
public static ResourceBundleProvider[] values()
for (ResourceBundleProvider c : ResourceBundleProvider.values()) System.out.println(c);
public static ResourceBundleProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic void register(java.lang.String bundleBaseName)
public java.lang.String get(Operator operator, java.util.Locale locale)
get in interface ResourceProviderpublic java.lang.String get(java.lang.String key,
java.util.Locale locale)
get in interface ResourceProvider