|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<LocaleStringLiteralStyle>
com.guiseframework.converter.LocaleStringLiteralStyle
public enum LocaleStringLiteralStyle
The style of a date in its string literal form.
| Enum Constant Summary | |
|---|---|
COUNTRY
A name for the locale's country that is appropriate for display to the user. |
|
COUNTRY_CODE_2
The uppercase ISO 3166 two-letter country/region code for the locale. |
|
COUNTRY_CODE_3
The uppercase ISO 3166 three-letter country/region code for the locale. |
|
LANGUAGE
A name for the locale's language that is appropriate for display to the user. |
|
LANGUAGE_CODE_2
The lowercase ISO 639 two-letter language code for the locale. |
|
LANGUAGE_CODE_3
The lowercase ISO 639-2/T three-letter language code |
|
LANGUAGE_TAG
The RFC 1766 language tag, such as en-US. |
|
NAME
A name for the locale that is appropriate for display to the user, such as language (country, variant). |
|
VARIANT
A name for the locale's variant code that is appropriate for display to the user. |
|
VARIANT_CODE
The variant code for the locale. |
|
| Method Summary | |
|---|---|
static LocaleStringLiteralStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LocaleStringLiteralStyle[] |
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 LocaleStringLiteralStyle COUNTRY
public static final LocaleStringLiteralStyle COUNTRY_CODE_2
public static final LocaleStringLiteralStyle COUNTRY_CODE_3
public static final LocaleStringLiteralStyle LANGUAGE
public static final LocaleStringLiteralStyle LANGUAGE_CODE_2
public static final LocaleStringLiteralStyle LANGUAGE_CODE_3
public static final LocaleStringLiteralStyle LANGUAGE_TAG
public static final LocaleStringLiteralStyle NAME
public static final LocaleStringLiteralStyle VARIANT
public static final LocaleStringLiteralStyle VARIANT_CODE
| Method Detail |
|---|
public static LocaleStringLiteralStyle[] values()
for (LocaleStringLiteralStyle c : LocaleStringLiteralStyle.values()) System.out.println(c);
public static LocaleStringLiteralStyle 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||