|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ELocaleMode>
net.sf.doolin.util.ELocaleMode
public enum ELocaleMode
Defines how a Locale must be used when looking for resources
| Enum Constant Summary | |
|---|---|
LANGUAGE
Defines the language only. |
|
LANGUAGE_COUNTRY
Defines the full locale, including language and country. |
|
NONE
Independant from the locale. |
|
| Method Summary | |
|---|---|
abstract Locale |
getLocale(Locale locale)
Converts a locale |
static ELocaleMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ELocaleMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ELocaleMode LANGUAGE_COUNTRY
public static final ELocaleMode LANGUAGE
public static final ELocaleMode NONE
| Method Detail |
|---|
public static ELocaleMode[] values()
for (ELocaleMode c : ELocaleMode.values()) System.out.println(c);
public static ELocaleMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic abstract Locale getLocale(Locale locale)
locale - Locale to convert.
null if the conversion cannot be done.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||