Package com.impossibl.postgres.utils
Class CompositeCharSequence
- java.lang.Object
-
- com.impossibl.postgres.utils.CompositeCharSequence
-
- All Implemented Interfaces:
CharSequence
public class CompositeCharSequence extends Object implements CharSequence
-
-
Constructor Summary
Constructors Constructor Description CompositeCharSequence(CharSequence[] components)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description charcharAt(int index)CharSequence[]getComponents()intlength()CharSequencesubSequence(int start, int end)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.CharSequence
chars, codePoints, toString
-
-
-
-
Constructor Detail
-
CompositeCharSequence
public CompositeCharSequence(CharSequence[] components)
-
-
Method Detail
-
getComponents
public CharSequence[] getComponents()
-
length
public int length()
- Specified by:
lengthin interfaceCharSequence
-
charAt
public char charAt(int index)
- Specified by:
charAtin interfaceCharSequence
-
subSequence
public CharSequence subSequence(int start, int end)
- Specified by:
subSequencein interfaceCharSequence
-
-