Class AttributedCharacterSpanIterator
java.lang.Object
org.apache.batik.gvt.text.AttributedCharacterSpanIterator
- All Implemented Interfaces:
Cloneable, AttributedCharacterIterator, CharacterIterator
AttributedCharacterSpanIterator
Used to provide ACI functionality to a "substring" of an AttributedString.
In this way a TextLayout can be created which only uses a substring of
AttributedString.
-
Nested Class Summary
Nested classes/interfaces inherited from interface AttributedCharacterIterator
AttributedCharacterIterator.Attribute -
Field Summary
Fields inherited from interface CharacterIterator
DONE -
Constructor Summary
ConstructorsConstructorDescriptionAttributedCharacterSpanIterator(AttributedCharacterIterator aci, int start, int stop) Construct a AttributedCharacterSpanIterator from a subinterval of an existing AttributedCharacterIterator. -
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.charsetIndex(int position) Sets the position to the specified position in the text.
-
Constructor Details
-
AttributedCharacterSpanIterator
Construct a AttributedCharacterSpanIterator from a subinterval of an existing AttributedCharacterIterator.- Parameters:
aci- The source AttributedCharacterIteratorstart- the first index of the subintervalstop- the index of the first character after the subinterval
-
-
Method Details
-
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
Returns a map with the attributes defined on the current character.- Specified by:
getAttributesin interfaceAttributedCharacterIterator
-
getRunLimit
public 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
public 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
Create a copy of this iterator- Specified by:
clonein interfaceCharacterIterator- Overrides:
clonein classObject
-
current
public char current()Get the character at the current position (as returned by getIndex()).
Specified by: java.text.CharacterIterator.- Specified by:
currentin interfaceCharacterIterator
-
first
public 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
public int getBeginIndex()Get the start index of the text.
Specified by: java.text.CharacterIterator.- Specified by:
getBeginIndexin interfaceCharacterIterator
-
getEndIndex
public int getEndIndex()Get the end index of the text.
Specified by: java.text.CharacterIterator.- Specified by:
getEndIndexin interfaceCharacterIterator
-
getIndex
public int getIndex()Get the current index.
Specified by: java.text.CharacterIterator.- Specified by:
getIndexin interfaceCharacterIterator
-
last
public 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
public 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
public 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
public 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.
-