org.apache.xmlrpc
Class XmlRpc.Value
java.lang.Object
org.apache.xmlrpc.XmlRpc.Value
- XmlRpc
(package private) class XmlRpc.Value
extends java.lang.Object
This represents a XML-RPC value parsed from the request.
void | characterData(String cdata) - Set the character data for the element and interpret it
according to the element type.
|
void | endElement(XmlRpc.Value child) - Notification that a new child element has been parsed.
|
int | hashCode() - This is a performance hack to get the type of a value
without casting the Object.
|
void | setType(int type) - Set the type of this value.
|
String | toString()
|
array
(package private) Vector array
nextMemberName
(package private) String nextMemberName
struct
(package private) Hashtable struct
type
(package private) int type
value
(package private) Object value
Value
public Value()
Constructor.
characterData
public void characterData(String cdata)
Set the character data for the element and interpret it
according to the element type.
endElement
public void endElement(XmlRpc.Value child)
Notification that a new child element has been parsed.
hashCode
public int hashCode()
This is a performance hack to get the type of a value
without casting the Object. It breaks the contract of
method hashCode, but it doesn't matter since Value objects
are never used as keys in Hashtables.
setType
public void setType(int type)
Set the type of this value. If it's a container, create the
corresponding java container.
toString
public String toString()
Copyright B) 1999-2002 Apache Software Foundation. All Rights Reserved.