com.servingxml.components.flatfile.options
Interface CharBuffer

All Known Implementing Classes:
CharBufferImpl

public interface CharBuffer


Method Summary
 char[] buffer()
           
 void clear()
           
 char current()
           
 boolean done()
           
 int getPosition()
           
 int getReserved()
           
 int length()
           
 int maxLength()
           
 void next()
           
 void next(int n)
           
 void setPosition(int position)
           
 void setReserved(int reserved)
           
 int start()
           
 boolean startsWith(char[] prefix)
           
 

Method Detail

maxLength

int maxLength()

getPosition

int getPosition()

setPosition

void setPosition(int position)

next

void next(int n)
          throws java.io.IOException
Throws:
java.io.IOException

getReserved

int getReserved()

setReserved

void setReserved(int reserved)

next

void next()
          throws java.io.IOException
Throws:
java.io.IOException

done

boolean done()

current

char current()

buffer

char[] buffer()

start

int start()

length

int length()

startsWith

boolean startsWith(char[] prefix)
                   throws java.io.IOException
Throws:
java.io.IOException

clear

void clear()