Interface Chars
-
- All Known Subinterfaces:
CharsModifiable
- All Known Implementing Classes:
CharsArray
public interface Chars- Author:
- hogye
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Charscopy()char[]copyOf()char[]copyOf(int i, int c)voidcopyTo(int i, char[] dest, int iDest, int c)voidcopyTo(int i, CharBuffer dest, int c)voidcopyTo(CharBuffer dest)charfirst()booleanisEmpty()charlast()intn()Length of the sequenceStringstring()Stringstring(int i, int c)charv(int i)Value at index i
-
-
-
Method Detail
-
v
char v(int i)
Value at index i
-
n
int n()
Length of the sequence
-
isEmpty
boolean isEmpty()
-
first
char first()
-
last
char last()
-
copyTo
void copyTo(int i, char[] dest, int iDest, int c)
-
copyTo
void copyTo(int i, CharBuffer dest, int c)
-
copyTo
void copyTo(CharBuffer dest)
-
copyOf
char[] copyOf(int i, int c)
-
copyOf
char[] copyOf()
-
copy
Chars copy()
-
string
String string(int i, int c)
-
string
String string()
-
-