public enum WordAttributeFlags extends java.lang.Enum<WordAttributeFlags>
| Enum Constant and Description |
|---|
ADJACENT_TO_SPACE
The character following the end of the word is a space (either an explicit space character encoded in a string, or one that appears implicitly because the drawing point was moved).
|
ENCODING_WARNING
Unreliable encoding conversion happened in this word.
|
EXT_CHAR_OFFSETS
The word has extended character offset information.
|
FRONT_TAB
Insert a tab character before this word
|
HAS_DIGIT
One or more characters in the word are digits.
|
HAS_HYPHEN
There is a hyphen in the word.
|
HAS_LEADING_PUNCTUATION
The first character in the word is a punctuation mark.
|
HAS_LETTER
The word contains a character between A-Z or a-z.
|
HAS_LIGATURE
The word contains a ligature.
|
HAS_NONALPHANUM
The word contains a character outside the range of A-Z, a-Z, 0-9.
|
HAS_PUNCTUATION
One or more characters in the word are punctuation marks.
|
HAS_SOFT_HYPHEN
There is a soft hyphen in the word.
|
HAS_TRAILING_PUNCTUATION
The last character in the word is a punctuation mark.
|
HAS_UNMAPPED_CHARACTERS
One or more characters in the word cannot be represented in the output font encoding.
|
HAS_UPPERCASE
The word contains a character between A-Z.
|
LAST_WORD_ON_LINE
The word is at the end of the current text line (for example, the word is followed by a line break).
|
REVERSE_DIRECTION
The writing direction is right-left or top-down
|
ROTATED
The writing direction of the word is not in a multiple of 90 degrees, or the bounding box of the text is skewed.
|
VERTICAL_FLOW
The writing direction of the word is either 90 or 180 degrees.
|
WORD_BREAK |
WORD_IS_UNICODE
The text is in Unicode format.
|
| Modifier and Type | Method and Description |
|---|---|
static WordAttributeFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WordAttributeFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WordAttributeFlags HAS_NONALPHANUM
public static final WordAttributeFlags HAS_LETTER
public static final WordAttributeFlags HAS_UPPERCASE
public static final WordAttributeFlags HAS_DIGIT
public static final WordAttributeFlags HAS_PUNCTUATION
public static final WordAttributeFlags HAS_HYPHEN
public static final WordAttributeFlags HAS_SOFT_HYPHEN
public static final WordAttributeFlags HAS_LIGATURE
public static final WordAttributeFlags HAS_LEADING_PUNCTUATION
public static final WordAttributeFlags HAS_TRAILING_PUNCTUATION
public static final WordAttributeFlags HAS_UNMAPPED_CHARACTERS
public static final WordAttributeFlags ADJACENT_TO_SPACE
public static final WordAttributeFlags ROTATED
public static final WordAttributeFlags VERTICAL_FLOW
public static final WordAttributeFlags WORD_BREAK
public static final WordAttributeFlags LAST_WORD_ON_LINE
public static final WordAttributeFlags FRONT_TAB
public static final WordAttributeFlags ENCODING_WARNING
public static final WordAttributeFlags REVERSE_DIRECTION
public static final WordAttributeFlags WORD_IS_UNICODE
public static final WordAttributeFlags EXT_CHAR_OFFSETS
public static WordAttributeFlags[] values()
for (WordAttributeFlags c : WordAttributeFlags.values()) System.out.println(c);
public static WordAttributeFlags valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null