Most visited

Recently visited

Added in API level 24

DisplayContext

public final enum DisplayContext
extends Enum<DisplayContext>

java.lang.Object
   ↳ java.lang.Enum<android.icu.text.DisplayContext>
     ↳ android.icu.text.DisplayContext


Display context settings. Note, the specific numeric values are internal and may change.

Summary

Nested classes

enum DisplayContext.Type

Type values for DisplayContext  

Enum values

DisplayContext  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. 

DisplayContext  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. 

DisplayContext  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. 

DisplayContext  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. 

DisplayContext  CAPITALIZATION_NONE

A possible setting for CAPITALIZATION: The capitalization context to be used is unknown (this is the default value). 

DisplayContext  DIALECT_NAMES

A possible setting for DIALECT_HANDLING: use dialect names, when generating a locale name, e.g. 

DisplayContext  LENGTH_FULL

A possible setting for DISPLAY_LENGTH: use full names when generating a locale name, e.g. 

DisplayContext  LENGTH_SHORT

A possible setting for DISPLAY_LENGTH: use short names when generating a locale name, e.g. 

DisplayContext  STANDARD_NAMES

A possible setting for DIALECT_HANDLING: use standard names when generating a locale name, e.g. 

Public methods

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)
static final DisplayContext[] values()

Inherited methods

From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum values

CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE

Added in API level 24
DisplayContext 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

Added in API level 24
DisplayContext 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

Added in API level 24
DisplayContext 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

Added in API level 24
DisplayContext 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

Added in API level 24
DisplayContext CAPITALIZATION_NONE

A possible setting for CAPITALIZATION: The capitalization context to be used is unknown (this is the default value).

DIALECT_NAMES

Added in API level 24
DisplayContext 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

Added in API level 24
DisplayContext LENGTH_FULL

A possible setting for DISPLAY_LENGTH: use full names when generating a locale name, e.g. "United States" for US.

LENGTH_SHORT

Added in API level 24
DisplayContext LENGTH_SHORT

A possible setting for DISPLAY_LENGTH: use short names when generating a locale name, e.g. "U.S." for US.

STANDARD_NAMES

Added in API level 24
DisplayContext 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)'.

Public methods

type

Added in API level 24
DisplayContext.Type type ()

Get the Type part of the enum item (e.g. CAPITALIZATION)

Returns
DisplayContext.Type

value

Added in API level 24
int value ()

Get the value part of the enum item (e.g. CAPITALIZATION_FOR_STANDALONE)

Returns
int

valueOf

Added in API level 24
DisplayContext valueOf (String name)

Parameters
name String
Returns
DisplayContext

values

Added in API level 24
DisplayContext[] values ()

Returns
DisplayContext[]

Hooray!