public enum DirectionEstimator extends Enum<DirectionEstimator>
| Enum Constant and Description |
|---|
anyRtl |
defaultAlign |
firstStrong |
wordCount |
| Modifier and Type | Method and Description |
|---|---|
static DirectionEstimator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirectionEstimator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionEstimator anyRtl
public static final DirectionEstimator firstStrong
public static final DirectionEstimator wordCount
public static final DirectionEstimator defaultAlign
public static DirectionEstimator[] values()
for (DirectionEstimator c : DirectionEstimator.values()) System.out.println(c);
public static DirectionEstimator 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 © 2015. All rights reserved.