< prev index next >

src/java.base/share/classes/sun/text/normalizer/RuleCharacterIterator.java

Print this page

        

*** 99,124 **** * Value returned when there are no more characters to iterate. */ public static final int DONE = -1; /** ! * Bitmask option to enable parsing of variable names. If (options & ! * PARSE_VARIABLES) != 0, then an embedded variable will be expanded to * its value. Variables are parsed using the SymbolTable API. */ public static final int PARSE_VARIABLES = 1; /** ! * Bitmask option to enable parsing of escape sequences. If (options & ! * PARSE_ESCAPES) != 0, then an embedded escape sequence will be expanded * to its value. Escapes are parsed using Utility.unescapeAt(). */ public static final int PARSE_ESCAPES = 2; /** ! * Bitmask option to enable skipping of whitespace. If (options & ! * SKIP_WHITESPACE) != 0, then whitespace characters will be silently * skipped, as if they were not present in the input. Whitespace * characters are defined by UCharacterProperty.isRuleWhiteSpace(). */ public static final int SKIP_WHITESPACE = 4; --- 99,127 ---- * Value returned when there are no more characters to iterate. */ public static final int DONE = -1; /** ! * Bitmask option to enable parsing of variable names. ! * If {@code (options & PARSE_VARIABLES) != 0}, ! * then an embedded variable will be expanded to * its value. Variables are parsed using the SymbolTable API. */ public static final int PARSE_VARIABLES = 1; /** ! * Bitmask option to enable parsing of escape sequences. ! * If {@code (options & PARSE_ESCAPES) != 0}, ! * then an embedded escape sequence will be expanded * to its value. Escapes are parsed using Utility.unescapeAt(). */ public static final int PARSE_ESCAPES = 2; /** ! * Bitmask option to enable skipping of whitespace. ! * If {@code (options & SKIP_WHITESPACE) != 0}, ! * then whitespace characters will be silently * skipped, as if they were not present in the input. Whitespace * characters are defined by UCharacterProperty.isRuleWhiteSpace(). */ public static final int SKIP_WHITESPACE = 4;
< prev index next >