Interface GVTAttributedCharacterIterator
- All Superinterfaces:
AttributedCharacterIterator, CharacterIterator, Cloneable
- All Known Implementing Classes:
GVTACIImpl
GVTAttributedCharacterIterator
Used to implement SVG <tspan> and <text>
attributes. This implementation is designed for efficient support
of per-character attributes (i.e. single character attribute spans).
It supports an extended set of TextAttributes, via inner class
SVGAttributedCharacterIterator.TextAttributes.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceInterface for helper class which mutates the attributes of an AttributedCharacterIterator.static classAttribute keys that identify SVG text attributes.Nested classes/interfaces inherited from interface AttributedCharacterIterator
AttributedCharacterIterator.Attribute -
Field Summary
Fields inherited from interface CharacterIterator
DONE -
Method Summary
Modifier and TypeMethodDescriptionclone()Create a copy of this iteratorcharcurrent()Get the character at the current position (as returned by getIndex()).charfirst()Sets the position to getBeginIndex().Get the keys of all attributes defined on the iterator's text range.Get the value of the named attribute for the current character.Returns a map with the attributes defined on the current character.intGet the start index of the text.intGet the end index of the text.intgetIndex()Get the current index.intGet the index of the first character following the run with respect to all attributes containing the current character.intgetRunLimit(AttributedCharacterIterator.Attribute attribute) Get the index of the first character following the run with respect to the given attribute containing the current character.intgetRunLimit(Set attributes) Get the index of the first character following the run with respect to the given attributes containing the current character.intGet the index of the first character of the run with respect to all attributes containing the current character.intgetRunStart(AttributedCharacterIterator.Attribute attribute) Get the index of the first character of the run with respect to the given attribute containing the current character.intgetRunStart(Set attributes) Get the index of the first character of the run with respect to the given attributes containing the current character.charlast()Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.charnext()Increments the iterator's index by one, returning the next character.charprevious()Decrements the iterator's index by one and returns the character at the new index.voidsetAttributeArray(GVTAttributedCharacterIterator.TextAttribute attr, Object[] attValues, int beginIndex, int endIndex) Sets values of a per-character attribute associated with the content string.charsetIndex(int position) Sets the position to the specified position in the text.voidSets this iterator's contents to an unattributed copy of String s.voidAssigns this iterator's contents to be equivalent to AttributedString s.
-
Method Details
-
setString
Sets this iterator's contents to an unattributed copy of String s. -
setString
Assigns this iterator's contents to be equivalent to AttributedString s. -
setAttributeArray
void setAttributeArray(GVTAttributedCharacterIterator.TextAttribute attr, Object[] attValues, int beginIndex, int endIndex) Sets values of a per-character attribute associated with the content string. Characters frombeginIndextoendIndex(zero-offset) are assigned values for attribute keyattrfrom the arrayattValues.If the length of attValues is less than character span(endIndex-beginIndex)the last value is duplicated; if attValues is longer than the character span the extra values are ignored. Note that if either beginIndex or endIndex are outside the bounds of the current character array they are clipped accordingly. -
getAllAttributeKeys
Set getAllAttributeKeys()Get the keys of all attributes defined on the iterator's text range.- Specified by:
getAllAttributeKeysin interfaceAttributedCharacterIterator
-
getAttribute
Get the value of the named attribute for the current character.- Specified by:
getAttributein interfaceAttributedCharacterIterator
-
getAttributes
Map getAttributes()Returns a map with the attributes defined on the current character.- Specified by:
getAttributesin interfaceAttributedCharacterIterator
-
getRunLimit
int getRunLimit()Get the index of the first character following the run with respect to all attributes containing the current character.- Specified by:
getRunLimitin interfaceAttributedCharacterIterator
-
getRunLimit
Get the index of the first character following the run with respect to the given attribute containing the current character.- Specified by:
getRunLimitin interfaceAttributedCharacterIterator
-
getRunLimit
Get the index of the first character following the run with respect to the given attributes containing the current character.- Specified by:
getRunLimitin interfaceAttributedCharacterIterator
-
getRunStart
int getRunStart()Get the index of the first character of the run with respect to all attributes containing the current character.- Specified by:
getRunStartin interfaceAttributedCharacterIterator
-
getRunStart
Get the index of the first character of the run with respect to the given attribute containing the current character.- Specified by:
getRunStartin interfaceAttributedCharacterIterator- Parameters:
attribute- The attribute for whose appearance the first offset is requested.
-
getRunStart
Get the index of the first character of the run with respect to the given attributes containing the current character.- Specified by:
getRunStartin interfaceAttributedCharacterIterator- Parameters:
attributes- the Set of attributes which begins at the returned index.
-
clone
-
current
char current()Get the character at the current position (as returned by getIndex()).
Specified by: java.text.CharacterIterator.- Specified by:
currentin interfaceCharacterIterator
-
first
char first()Sets the position to getBeginIndex().- Specified by:
firstin interfaceCharacterIterator- Returns:
- the character at the start index of the text.
Specified by: java.text.CharacterIterator.
-
getBeginIndex
int getBeginIndex()Get the start index of the text.
Specified by: java.text.CharacterIterator.- Specified by:
getBeginIndexin interfaceCharacterIterator
-
getEndIndex
int getEndIndex()Get the end index of the text.
Specified by: java.text.CharacterIterator.- Specified by:
getEndIndexin interfaceCharacterIterator
-
getIndex
int getIndex()Get the current index.
Specified by: java.text.CharacterIterator.- Specified by:
getIndexin interfaceCharacterIterator
-
last
char last()Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.
Specified by: java.text.CharacterIterator.- Specified by:
lastin interfaceCharacterIterator
-
next
char next()Increments the iterator's index by one, returning the next character.- Specified by:
nextin interfaceCharacterIterator- Returns:
- the character at the new index.
Specified by: java.text.CharacterIterator.
-
previous
char previous()Decrements the iterator's index by one and returns the character at the new index.
Specified by: java.text.CharacterIterator.- Specified by:
previousin interfaceCharacterIterator
-
setIndex
char setIndex(int position) Sets the position to the specified position in the text.- Specified by:
setIndexin interfaceCharacterIterator- Parameters:
position- The new (current) index into the text.- Returns:
- the character at new index position.
Specified by: java.text.CharacterIterator.
-