public static enum BidiTransform.Mirroring extends Enum<BidiTransform.Mirroring>
BidiTransform.Mirroring
indicates whether or not characters with
the "mirrored" property in RTL runs should be replaced with their
mirror-image counterparts.Bidi.DO_MIRRORING
,
Bidi.setReorderingOptions(int)
,
Bidi.writeReordered(int)
,
Bidi.writeReverse(java.lang.String, int)
Enum Constant and Description |
---|
OFF
Constant indicating that character mirroring should not be
performed.
|
ON
Constant indicating that character mirroring should be performed.
|
Modifier and Type | Method and Description |
---|---|
static BidiTransform.Mirroring |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BidiTransform.Mirroring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BidiTransform.Mirroring OFF
public static final BidiTransform.Mirroring ON
This corresponds to calling
or Bidi.writeReordered(int)
with the
Bidi.writeReverse(java.lang.String, int)
option bit set.Bidi.DO_MIRRORING
public static BidiTransform.Mirroring[] values()
for (BidiTransform.Mirroring c : BidiTransform.Mirroring.values()) System.out.println(c);
public static BidiTransform.Mirroring 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.