Package com.impossibl.postgres.utils
Class CompositeCharSequence
- java.lang.Object
-
- com.impossibl.postgres.utils.CompositeCharSequence
-
- All Implemented Interfaces:
java.lang.CharSequence
public class CompositeCharSequence extends java.lang.Object implements java.lang.CharSequence
-
-
Constructor Summary
Constructors Constructor Description CompositeCharSequence(java.lang.CharSequence[] components)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char
charAt(int index)
java.lang.CharSequence[]
getComponents()
int
length()
java.lang.CharSequence
subSequence(int start, int end)
-
-
-
Method Detail
-
getComponents
public java.lang.CharSequence[] getComponents()
-
length
public int length()
- Specified by:
length
in interfacejava.lang.CharSequence
-
charAt
public char charAt(int index)
- Specified by:
charAt
in interfacejava.lang.CharSequence
-
subSequence
public java.lang.CharSequence subSequence(int start, int end)
- Specified by:
subSequence
in interfacejava.lang.CharSequence
-
-