@Deprecated public enum Directionality extends Enum<Directionality>
It is used to implement the @code u:dir} functionality.
Enum Constant and Description |
---|
AUTO
Deprecated.
This API is for technology preview only.
|
INHERIT
Deprecated.
This API is for technology preview only.
|
LTR
Deprecated.
This API is for technology preview only.
|
RTL
Deprecated.
This API is for technology preview only.
|
UNKNOWN
Deprecated.
This API is for technology preview only.
|
Modifier and Type | Method and Description |
---|---|
static Directionality |
of(ULocale ulocale)
Deprecated.
This API is for technology preview only.
|
static Directionality |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Directionality[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final Directionality UNKNOWN
No special processing will be used.
@Deprecated public static final Directionality LTR
@Deprecated public static final Directionality RTL
@Deprecated public static final Directionality AUTO
@Deprecated public static final Directionality INHERIT
public static Directionality[] values()
for (Directionality c : Directionality.values()) System.out.println(c);
public static Directionality 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 null@Deprecated public static Directionality of(ULocale ulocale)
ulocale
- the locale to determine the directionality from.Copyright © 2016 Unicode, Inc. and others.