@Deprecated public static enum MessageFormatter.BidiIsolation extends Enum<MessageFormatter.BidiIsolation>
They can be either ignored, or will implement the default algorithm described in the MessageFormat 2 specification.
Used in conjunction with the
MessageFormatter.Builder.setBidiIsolation(MessageFormatter.BidiIsolation)
method.
Enum Constant and Description |
---|
DEFAULT
Deprecated.
This API is for technology preview only.
|
NONE
Deprecated.
This API is for technology preview only.
|
Modifier and Type | Method and Description |
---|---|
static MessageFormatter.BidiIsolation |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static MessageFormatter.BidiIsolation[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final MessageFormatter.BidiIsolation NONE
@Deprecated public static final MessageFormatter.BidiIsolation DEFAULT
public static MessageFormatter.BidiIsolation[] values()
for (MessageFormatter.BidiIsolation c : MessageFormatter.BidiIsolation.values()) System.out.println(c);
public static MessageFormatter.BidiIsolation 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.