Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.text.CharacterIterator

Uses of CharacterIterator in java.text
 

Subinterfaces of CharacterIterator in java.text
 interface AttributedCharacterIterator
          This interface extends the CharacterIterator interface in order to support iteration over character attributes as well as over the characters themselves.
 

Classes in java.text that implement CharacterIterator
(package private)  class AttributedStringIterator
          This class implements the AttributedCharacterIterator interface.
 class StringCharacterIterator
          This class iterates over a range of characters in a String.
 

Fields in java.text declared as CharacterIterator
private  CharacterIterator AttributedStringIterator.ci
          The character iterator containing the text
 

Methods in java.text that return CharacterIterator
abstract  CharacterIterator BreakIterator.getText()
          This method returns the text this object is iterating over as a CharacterIterator.
 

Methods in java.text with parameters of type CharacterIterator
 CollationElementIterator RuleBasedCollator.getCollationElementIterator(CharacterIterator source)
          This method returns an instance of CollationElementIterator for the String represented by the specified CharacterIterator.
abstract  void BreakIterator.setText(CharacterIterator newText)
          This method sets the text to iterate over from the specified CharacterIterator.
 void CollationElementIterator.setText(CharacterIterator source)
          This method sets the String that it is iterating over to the String represented by the specified CharacterIterator.