Package org.glassfish.grizzly.http.util
Interface Chunk
-
- All Known Implementing Classes:
BufferChunk,ByteChunk,CacheableDataChunk,CharChunk,DataChunk
public interface ChunkGeneral interface forCharChunkandBufferChunk.- Since:
- 2.0
- Author:
- Alexey Stashok
- See Also:
CharChunk,BufferChunk,DataChunk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(int start, int end)intgetEnd()intgetLength()intgetStart()intindexOf(char c, int start)intindexOf(String s, int start)voidsetEnd(int end)voidsetStart(int start)StringtoString(int start, int end)
-
-
-
Method Detail
-
getStart
int getStart()
-
setStart
void setStart(int start)
-
getEnd
int getEnd()
-
setEnd
void setEnd(int end)
-
getLength
int getLength()
-
toString
String toString(int start, int end)
-
indexOf
int indexOf(char c, int start)
-
indexOf
int indexOf(String s, int start)
-
delete
void delete(int start, int end)
-
-