Modifier and Type | Field and Description |
---|---|
protected char[] |
buffer |
protected int |
bufferLen |
protected int |
ptr |
protected int |
savedPtr |
Modifier | Constructor and Description |
---|---|
protected |
StringTokenizer() |
|
StringTokenizer(String buffer) |
Modifier and Type | Method and Description |
---|---|
void |
consume() |
void |
consume(int k) |
String |
getLine() |
Vector<String> |
getLines()
Get a Vector of the buffer tokenized by lines
|
char |
getNextChar() |
String |
getNextToken(char delim)
Get the next token from the buffer.
|
static String |
getSDPFieldName(String line)
get the SDP field name of the line
|
boolean |
hasMoreChars() |
static boolean |
isAlpha(char ch) |
static boolean |
isAlphaDigit(char ch) |
static boolean |
isDigit(char ch) |
static boolean |
isHexDigit(char ch) |
char |
lookAhead() |
char |
lookAhead(int k) |
String |
nextToken() |
String |
peekLine() |
protected char[] buffer
protected int bufferLen
protected int ptr
protected int savedPtr
protected StringTokenizer()
public StringTokenizer(String buffer)
public String nextToken()
public boolean hasMoreChars()
public static boolean isHexDigit(char ch)
public static boolean isAlpha(char ch)
public static boolean isDigit(char ch)
public static boolean isAlphaDigit(char ch)
public String getLine()
public String peekLine()
public char lookAhead() throws ParseException
ParseException
public char lookAhead(int k) throws ParseException
ParseException
public char getNextChar() throws ParseException
ParseException
public void consume()
public void consume(int k)
public String getNextToken(char delim) throws ParseException
ParseException
Copyright © 2016. All Rights Reserved.