| Package | Description |
|---|---|
| org.glassfish.admin.rest.readers |
| Modifier and Type | Method and Description |
|---|---|
InputException |
InputReader.error(String message)
Resturns InputException to signal a syntax error.
|
| Modifier and Type | Method and Description |
|---|---|
void |
InputReader.back()
Back up one character.
|
Object |
InputObject.get(String key)
Get the value object associated with a key.
|
boolean |
InputObject.getBoolean(String key)
Get the boolean value associated with a key.
|
double |
InputObject.getDouble(String key)
Get the double value associated with a key.
|
int |
InputObject.getInt(String key)
Get the int value associated with a key.
|
long |
InputObject.getLong(String key)
Get the long value associated with a key.
|
Map |
XmlInputObject.getMap() |
String |
InputObject.getString(String key)
Get the string associated with a key.
|
Map |
XmlInputObject.initializeMap()
Construct and returns a map of input key-value pairs
|
abstract Map |
InputObject.initializeMap()
Get the map of key-value pairs represented by this object.
|
boolean |
InputReader.more()
Determine if the source string still contains characters that next()
can consume.
|
char |
InputReader.next()
Get the next character in the source string.
|
String |
InputReader.next(int n)
Get the next n characters.
|
String |
XmlInputReader.nextCDATA()
Get the text in the CDATA block.
|
Object |
XmlInputReader.nextContent()
Get the next XML outer token, trimming whitespace.
|
Object |
XmlInputReader.nextEntity(char a)
Return the next entity.
|
Object |
XmlInputReader.nextMeta()
Returns the next XML meta token.
|
char |
InputReader.nextNonSpace()
Get the next char in the string, skipping whitespace.
|
Object |
XmlInputReader.nextToken()
Get the next XML Token.
|
InputObject |
InputObject.put(String key,
Object value)
Put a key/value pair in this object, but only if the key and the
value are both non-null, and only if there is not already a member
with that name.
|
boolean |
XmlInputReader.skipPast(String to)
Skip characters until past the requested string.
|
| Constructor and Description |
|---|
XmlInputObject(InputStream inputstream)
Construct a XmlInputObjectfrom a input stream.
|
XmlInputObject(String source)
Construct a XmlInputObjectfrom a XML text string.
|
XmlInputObject(XmlInputReader xmlReader) |
Copyright © 2017. All rights reserved.