On this page
Class Segment
- All Implemented Interfaces:
 CharSequence,Cloneable,CharacterIterator
public class Segment extends Object implements Cloneable, CharacterIterator, CharSequence
   The Segment implements the java.text.CharacterIterator interface to support use with the i18n support without copying text into a string.
Field Summary
| Modifier and Type | Field | Description | 
|---|---|---|
char[] | 
        array | 
        
          
          This is the array containing the text of interest.
           | 
       
int | 
        count | 
        
          
          This is the number of array elements that make up the text of interest.
           | 
       
int | 
        offset | 
        
          
          This is the offset into the array that the desired text begins.
           | 
       
Fields declared in interface java.text.CharacterIterator
DONE
    Constructor Summary
Method Summary
| Modifier and Type | Method | Description | 
|---|---|---|
char | 
          charAt | 
          
            
            Returns the  char value at the specified index.
            | 
         
Object | 
          clone() | 
          
            
            Creates a shallow copy.
             | 
         
char | 
          current() | 
          
            
            Gets the character at the current position (as returned by getIndex()).
             | 
         
char | 
          first() | 
          
            
            Sets the position to getBeginIndex() and returns the character at that position.
             | 
         
int | 
          getBeginIndex() | 
          
            
            Returns the start index of the text.
             | 
         
int | 
          getEndIndex() | 
          
            
            Returns the end index of the text.
             | 
         
int | 
          getIndex() | 
          
            
            Returns the current index.
             | 
         
boolean | 
          isPartialReturn() | 
          
            
            Flag to indicate that partial returns are valid.
             | 
         
char | 
          last() | 
          
            
            Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.
             | 
         
int | 
          length() | 
          
            
            Returns the length of this character sequence.
             | 
         
char | 
          next() | 
          
            
            Increments the iterator's index by one and returns the character at the new index.
             | 
         
char | 
          previous() | 
          
            
            Decrements the iterator's index by one and returns the character at the new index.
             | 
         
char | 
          setIndex | 
          
            
            Sets the position to the specified position in the text and returns that character.
             | 
         
void | 
          setPartialReturn | 
          
            
            Flag to indicate that partial returns are valid.
             | 
         
CharSequence | 
          subSequence | 
          
            
            Returns a  CharSequence that is a subsequence of this sequence.
            | 
         
String | 
          toString() | 
          
            
            Converts a segment into a String.
             | 
         
Methods declared in class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    Methods declared in interface java.lang.CharSequence
chars, codePoints, isEmpty
    Field Details
array
public char[] array
    offset
public int offset
    count
public int count
    Constructor Details
Segment
public Segment()
    Segment
public Segment(char[] array, int offset, int count)
    - Parameters:
 array- the array to refer tooffset- the offset into the arraycount- the number of characters
Method Details
setPartialReturn
public void setPartialReturn(boolean p)
    - Parameters:
 p- whether or not partial returns are valid.- Since:
 - 1.4
 
isPartialReturn
public boolean isPartialReturn()
    - Returns:
 - whether or not partial returns are valid.
 - Since:
 - 1.4
 
toString
public String toString()
    - Specified by:
 toStringin interfaceCharSequence- Overrides:
 toStringin classObject- Returns:
 - the string
 
first
public char first()
    - Specified by:
 firstin interfaceCharacterIterator- Returns:
 - the first character in the text, or DONE if the text is empty
 - Since:
 - 1.3
 - See Also:
 
last
public char last()
    - Specified by:
 lastin interfaceCharacterIterator- Returns:
 - the last character in the text, or DONE if the text is empty
 - Since:
 - 1.3
 - See Also:
 
current
public char current()
    - Specified by:
 currentin interfaceCharacterIterator- Returns:
 - the character at the current position or DONE if the current position is off the end of the text.
 - Since:
 - 1.3
 - See Also:
 
next
public char next()
    - Specified by:
 nextin interfaceCharacterIterator- Returns:
 - the character at the new position or DONE if the new position is off the end of the text range.
 - Since:
 - 1.3
 
previous
public char previous()
    - Specified by:
 previousin interfaceCharacterIterator- Returns:
 - the character at the new position or DONE if the current position is equal to getBeginIndex().
 - Since:
 - 1.3
 
setIndex
public char setIndex(int position)
    - Specified by:
 setIndexin interfaceCharacterIterator- Parameters:
 position- the position within the text. Valid values range from getBeginIndex() to getEndIndex(). An IllegalArgumentException is thrown if an invalid value is supplied.- Returns:
 - the character at the specified position or DONE if the specified position is equal to getEndIndex()
 - Since:
 - 1.3
 
getBeginIndex
public int getBeginIndex()
    - Specified by:
 getBeginIndexin interfaceCharacterIterator- Returns:
 - the index at which the text begins.
 - Since:
 - 1.3
 
getEndIndex
public int getEndIndex()
    - Specified by:
 getEndIndexin interfaceCharacterIterator- Returns:
 - the index after the last character in the text
 - Since:
 - 1.3
 
getIndex
public int getIndex()
    - Specified by:
 getIndexin interfaceCharacterIterator- Returns:
 - the current index.
 - Since:
 - 1.3
 
charAt
public char charAt(int index)
    char value at the specified index. An index ranges from zero to length() - 1. The first char value of the sequence is at index zero, the next at index one, and so on, as for array indexing. 
     If the char value specified by the index is a surrogate, the surrogate value is returned.
- Specified by:
 charAtin interfaceCharSequence- Parameters:
 index- the index of thecharvalue to be returned- Returns:
 - 
      the specified 
charvalue - Since:
 - 1.6
 
length
public int length()
    chars in the sequence.
    - Specified by:
 lengthin interfaceCharSequence- Returns:
 - 
      the number of 
chars in this sequence - Since:
 - 1.6
 
subSequence
public CharSequence subSequence(int start, int end)
    CharSequence that is a subsequence of this sequence. The subsequence starts with the char value at the specified index and ends with the char value at index end - 1. The length (in chars) of the returned sequence is end - start, so if start == end then an empty sequence is returned.
    - Specified by:
 subSequencein interfaceCharSequence- Parameters:
 start- the start index, inclusiveend- the end index, exclusive- Returns:
 - the specified subsequence
 - Since:
 - 1.6
 
clone
public Object clone()
    - Specified by:
 clonein interfaceCharacterIterator- Overrides:
 clonein classObject- Returns:
 - the copy
 - See Also:
 
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
 https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/text/Segment.html