public enum LoadResourceBundle extends Enum<LoadResourceBundle>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Field and Description |
|---|---|
static ResourceBundle |
EMPTY_RESOURCE_BUNDLE |
| Modifier and Type | Method and Description |
|---|---|
ResourceBundle |
apply(String resourceName) |
static LoadResourceBundle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadResourceBundle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadResourceBundle INSTANCE
public static final ResourceBundle EMPTY_RESOURCE_BUNDLE
public static LoadResourceBundle[] values()
for (LoadResourceBundle c : LoadResourceBundle.values()) System.out.println(c);
public static LoadResourceBundle 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 final ResourceBundle apply(String resourceName)
Copyright © 2003–2018. All rights reserved.