com.esri.arcgisws
Class Index

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

public class Index
extends Object
implements Serializable

ESRI Index Object.

Java class for Index complex type.

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

 <complexType name="Index">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="IsUnique" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
         <element name="IsAscending" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
         <element name="Fields" type="{http://www.esri.com/schemas/ArcGIS/10.0}Fields"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
ESRI Index Object.

See Also:
Serialized Form

Constructor Summary
Index()
          Index default constructor.
Index(String name, boolean isUnique, boolean isAscending, Fields fields)
          Deprecated. 
 
Method Summary
 Fields getFields()
          The fields collection for this index.
 String getName()
          The name of the index.
 boolean isIsAscending()
          Indicates if the index is based on ascending order.
 boolean isIsUnique()
          Indicates if the index is unique.
 void setFields(Fields value)
          The fields collection for this index.
 void setIsAscending(boolean value)
          Indicates if the index is based on ascending order.
 void setIsUnique(boolean value)
          Indicates if the index is unique.
 void setName(String value)
          The name of the index.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Index

@Deprecated
public Index(String name,
                        boolean isUnique,
                        boolean isAscending,
                        Fields fields)
Deprecated. 

Index constructor.


Index

public Index()
Index default constructor.

Method Detail

getName

public String getName()
The name of the index. Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
The name of the index. Sets the value of the name property.

Parameters:
value - allowed object is String

isIsUnique

public boolean isIsUnique()
Indicates if the index is unique. Gets the value of the isUnique property.


setIsUnique

public void setIsUnique(boolean value)
Indicates if the index is unique. Sets the value of the isUnique property.


isIsAscending

public boolean isIsAscending()
Indicates if the index is based on ascending order. Gets the value of the isAscending property.


setIsAscending

public void setIsAscending(boolean value)
Indicates if the index is based on ascending order. Sets the value of the isAscending property.


getFields

public Fields getFields()
The fields collection for this index. Gets the value of the fields property.

Returns:
possible object is Fields

setFields

public void setFields(Fields value)
The fields collection for this index. Sets the value of the fields property.

Parameters:
value - allowed object is Fields