Package java.text
Interface AttributedCharacterIterator
- All Superinterfaces:
CharacterIterator,Cloneable
public interface AttributedCharacterIterator extends CharacterIterator
Extends the
CharacterIterator interface, adding support for iterating over
attributes and not only characters. An
AttributedCharacterIterator also allows the user to find runs and
their limits. Runs are defined as ranges of characters that all have the same
attributes with the same values.-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAttributedCharacterIterator.AttributeDefines keys for text attributes. -
Field Summary
Fields inherited from interface java.text.CharacterIterator
DONE -
Method Summary
Modifier and Type Method Description Set<AttributedCharacterIterator.Attribute>getAllAttributeKeys()Returns a set of attributes present in theAttributedCharacterIterator.ObjectgetAttribute(AttributedCharacterIterator.Attribute attribute)Returns the value stored in the attribute for the current character.Map<AttributedCharacterIterator.Attribute,Object>getAttributes()Returns a map of all attributes of the current character.intgetRunLimit()Returns the index of the last character in the run having the same attributes as the current character.intgetRunLimit(AttributedCharacterIterator.Attribute attribute)Returns the index of the last character in the run that has the same attribute value for the given attribute as the current character.intgetRunLimit(Set<? extends AttributedCharacterIterator.Attribute> attributes)Returns the index of the last character in the run that has the same attribute values for the attributes in the set as the current character.intgetRunStart()Returns the index of the first character in the run that has the same attributes as the current character.intgetRunStart(AttributedCharacterIterator.Attribute attribute)Returns the index of the first character in the run that has the same attribute value for the given attribute as the current character.intgetRunStart(Set<? extends AttributedCharacterIterator.Attribute> attributes)Returns the index of the first character in the run that has the same attribute values for the attributes in the set as the current character.Methods inherited from interface java.text.CharacterIterator
clone, current, first, getBeginIndex, getEndIndex, getIndex, last, next, previous, setIndex
-
Method Details
-
getAllAttributeKeys
Set<AttributedCharacterIterator.Attribute> getAllAttributeKeys()Returns a set of attributes present in theAttributedCharacterIterator. An empty set is returned if no attributes were defined.- Returns:
- a set of attribute keys; may be empty.
-
getAttribute
Returns the value stored in the attribute for the current character. If the attribute was not defined thennullis returned.- Parameters:
attribute- the attribute for which the value should be returned.- Returns:
- the value of the requested attribute for the current character or
nullif it was not defined.
-
getAttributes
Map<AttributedCharacterIterator.Attribute,Object> getAttributes()Returns a map of all attributes of the current character. If no attributes were defined for the current character then an empty map is returned.- Returns:
- a map of all attributes for the current character or an empty map.
-
getRunLimit
int getRunLimit()Returns the index of the last character in the run having the same attributes as the current character.- Returns:
- the index of the last character of the current run.
-
getRunLimit
Returns the index of the last character in the run that has the same attribute value for the given attribute as the current character.- Parameters:
attribute- the attribute which the run is based on.- Returns:
- the index of the last character of the current run.
-
getRunLimit
Returns the index of the last character in the run that has the same attribute values for the attributes in the set as the current character.- Parameters:
attributes- the set of attributes which the run is based on.- Returns:
- the index of the last character of the current run.
-
getRunStart
int getRunStart()Returns the index of the first character in the run that has the same attributes as the current character.- Returns:
- the index of the last character of the current run.
-
getRunStart
Returns the index of the first character in the run that has the same attribute value for the given attribute as the current character.- Parameters:
attribute- the attribute which the run is based on.- Returns:
- the index of the last character of the current run.
-
getRunStart
Returns the index of the first character in the run that has the same attribute values for the attributes in the set as the current character.- Parameters:
attributes- the set of attributes which the run is based on.- Returns:
- the index of the last character of the current run.
-