Most visited

Recently visited

Added in API level 24

ULocale.Category

public static final enum ULocale.Category
extends Enum<ULocale.Category>

java.lang.Object
   ↳ java.lang.Enum<android.icu.util.ULocale.Category>
     ↳ android.icu.util.ULocale.Category


Enum for locale categories. These locale categories are used to get/set the default locale for the specific functionality represented by the category.

Summary

Enum values

ULocale.Category  DISPLAY

Category used to represent the default locale for displaying user interfaces. 

ULocale.Category  FORMAT

Category used to represent the default locale for formatting date, number and/or currency. 

Public methods

static ULocale.Category valueOf(String name)
static final Category[] values()

Inherited methods

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

Enum values

DISPLAY

Added in API level 24
ULocale.Category DISPLAY

Category used to represent the default locale for displaying user interfaces.

FORMAT

Added in API level 24
ULocale.Category FORMAT

Category used to represent the default locale for formatting date, number and/or currency.

Public methods

valueOf

Added in API level 24
ULocale.Category valueOf (String name)

Parameters
name String
Returns
ULocale.Category

values

Added in API level 24
Category[] values ()

Returns
Category[]

Hooray!