org.ksoap2.serialization
Class SoapPrimitive
java.lang.Object
org.ksoap2.serialization.AttributeContainer
org.ksoap2.serialization.SoapPrimitive
public class SoapPrimitive
- extends AttributeContainer
A class that is used to encapsulate primitive types (represented by a string
in XML serialization).
Basically, the SoapPrimitive class encapsulates "unknown" primitive types
(similar to SoapObject encapsulating unknown complex types). For example, new
SoapPrimitive (classMap.xsd, "float", "12.3") allows you to send a float from
a MIDP device to a server although MIDP does not support floats. In the other
direction, kSOAP will deserialize any primitive type (=no subelements) that
are not recognized by the ClassMap to SoapPrimitive, preserving the
namespace, name and string value (this is how the stockquote example works).
SoapPrimitive
public SoapPrimitive(String namespace,
String name,
String value)
equals
public boolean equals(Object o)
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class Object
toString
public String toString()
- Overrides:
toString
in class Object
getNamespace
public String getNamespace()
getName
public String getName()
Copyright © 2002-2011. All Rights Reserved.