org.ksoap2.serialization
Class SoapPrimitive

java.lang.Object
  extended by org.ksoap2.serialization.AttributeContainer
      extended by 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).


Constructor Summary
SoapPrimitive(String namespace, String name, String value)
           
 
Method Summary
 boolean equals(Object o)
           
 String getName()
           
 String getNamespace()
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class org.ksoap2.serialization.AttributeContainer
addAttribute, addAttribute, attributesAreEqual, getAttribute, getAttribute, getAttributeCount, getAttributeInfo, hasAttribute, safeGetAttribute
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SoapPrimitive

public SoapPrimitive(String namespace,
                     String name,
                     String value)
Method Detail

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.