@Deprecated public static enum PersonNameFormatter.Options extends Enum<PersonNameFormatter.Options>
| Enum Constant and Description |
|---|
SORTING
Deprecated.
This API is for technology preview only.
|
SURNAME_ALLCAPS
Deprecated.
This API is for technology preview only.
|
| Modifier and Type | Method and Description |
|---|---|
static PersonNameFormatter.Options |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static PersonNameFormatter.Options[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final PersonNameFormatter.Options SORTING
@Deprecated public static final PersonNameFormatter.Options SURNAME_ALLCAPS
public static PersonNameFormatter.Options[] values()
for (PersonNameFormatter.Options c : PersonNameFormatter.Options.values()) System.out.println(c);
public static PersonNameFormatter.Options 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 nullCopyright © 2016 Unicode, Inc. and others.