com.esri.arcgisws
Class QueryResult

java.lang.Object
  extended by com.esri.arcgisws.QueryResult
All Implemented Interfaces:
Serializable

public class QueryResult
extends Object
implements Serializable

Query Result

Java class for QueryResult complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="QueryResult">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="MimeData" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
         <element name="URL" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="Object" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
Query Result

See Also:
Serialized Form

Constructor Summary
QueryResult()
          QueryResult default constructor.
QueryResult(byte[] mimeData, String url, Object object)
          Deprecated. 
 
Method Summary
 byte[] getMimeData()
          Binary data representing the generated result in the requested format.
 Object getObject()
          The Object representing generated query result in the requested format.
 String getURL()
          The URL of the generated query result in the requested format.
 void setMimeData(byte[] value)
          Binary data representing the generated result in the requested format.
 void setObject(Object value)
          The Object representing generated query result in the requested format.
 void setURL(String value)
          The URL of the generated query result in the requested format.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryResult

@Deprecated
public QueryResult(byte[] mimeData,
                              String url,
                              Object object)
Deprecated. 

QueryResult constructor.


QueryResult

public QueryResult()
QueryResult default constructor.

Method Detail

getMimeData

public byte[] getMimeData()
Binary data representing the generated result in the requested format. Gets the value of the mimeData property.

Returns:
possible object is byte[]

setMimeData

public void setMimeData(byte[] value)
Binary data representing the generated result in the requested format. Sets the value of the mimeData property.

Parameters:
value - allowed object is byte[]

getURL

public String getURL()
The URL of the generated query result in the requested format. Gets the value of the url property.

Returns:
possible object is String

setURL

public void setURL(String value)
The URL of the generated query result in the requested format. Sets the value of the url property.

Parameters:
value - allowed object is String

getObject

public Object getObject()
The Object representing generated query result in the requested format. Gets the value of the object property.

Returns:
possible object is Object

setObject

public void setObject(Object value)
The Object representing generated query result in the requested format. Sets the value of the object property.

Parameters:
value - allowed object is Object