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 char
charAt(int index)
CharSequence[]
getComponents()
int
length()
CharSequence
subSequence(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:
length
in interfaceCharSequence
-
charAt
public char charAt(int index)
- Specified by:
charAt
in interfaceCharSequence
-
subSequence
public CharSequence subSequence(int start, int end)
- Specified by:
subSequence
in interfaceCharSequence
-
-