public enum DisplayContext extends Enum<DisplayContext>
Modifier and Type | Class and Description |
---|---|
static class |
DisplayContext.Type
Type values for DisplayContext
|
Enum Constant and Description |
---|
CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE
A possible setting for CAPITALIZATION:
The capitalization context if a date, date symbol or display name is to be
formatted with capitalization appropriate for the beginning of a sentence.
|
CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE
A possible setting for CAPITALIZATION:
The capitalization context if a date, date symbol or display name is to be
formatted with capitalization appropriate for the middle of a sentence.
|
CAPITALIZATION_FOR_STANDALONE
A possible setting for CAPITALIZATION:
The capitalization context if a date, date symbol or display name is to be
formatted with capitalization appropriate for stand-alone usage such as an
isolated name on a calendar page.
|
CAPITALIZATION_FOR_UI_LIST_OR_MENU
A possible setting for CAPITALIZATION:
The capitalization context if a date, date symbol or display name is to be
formatted with capitalization appropriate for a user-interface list or menu item.
|
CAPITALIZATION_NONE
A possible setting for CAPITALIZATION:
The capitalization context to be used is unknown (this is the default value).
|
DIALECT_NAMES
A possible setting for DIALECT_HANDLING:
use dialect names, when generating a locale name,
e.g. en_GB displays as 'British English'.
|
LENGTH_FULL
A possible setting for DISPLAY_LENGTH:
use full names when generating a locale name,
e.g.
|
LENGTH_SHORT
A possible setting for DISPLAY_LENGTH:
use short names when generating a locale name,
e.g.
|
NO_SUBSTITUTE
A possible setting for SUBSTITUTE_HANDLING:
Returns a null value when no data is available.
|
STANDARD_NAMES
A possible setting for DIALECT_HANDLING:
use standard names when generating a locale name,
e.g. en_GB displays as 'English (United Kingdom)'.
|
SUBSTITUTE
A possible setting for SUBSTITUTE_HANDLING:
Returns a fallback value (e.g., the input code) when no data is available.
|
Modifier and Type | Method and Description |
---|---|
DisplayContext.Type |
type()
Get the Type part of the enum item
(e.g.
|
int |
value()
Get the value part of the enum item
(e.g.
|
static DisplayContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayContext STANDARD_NAMES
public static final DisplayContext DIALECT_NAMES
public static final DisplayContext CAPITALIZATION_NONE
public static final DisplayContext CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE
public static final DisplayContext CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE
public static final DisplayContext CAPITALIZATION_FOR_UI_LIST_OR_MENU
public static final DisplayContext CAPITALIZATION_FOR_STANDALONE
public static final DisplayContext LENGTH_FULL
public static final DisplayContext LENGTH_SHORT
public static final DisplayContext SUBSTITUTE
public static final DisplayContext NO_SUBSTITUTE
public static DisplayContext[] values()
for (DisplayContext c : DisplayContext.values()) System.out.println(c);
public static DisplayContext 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 DisplayContext.Type type()
public int value()
Copyright © 2016 Unicode, Inc. and others.