com.esri.arcgis.geodatabase
Interface esriSetOperation

All Superinterfaces:
java.io.Serializable

public interface esriSetOperation
extends java.io.Serializable

Set Operations.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Description

Selection set operators which control the results of the ISelectionSet::Combine operator.

Remarks

esriSetUnion

All rows present in the first selection set and all rows in the second are copied to the output selection set. This is a Boolean OR operation

esriSetIntersection

All row IDs present in both input selection sets are copied to the output set. Those row IDs present in only one set are discarded. This is a Boolean AND operation.

esriSetDifference

All rows present in the first selection set but not in the second are copied to the output selection set. This is a Boolean INHIBITION operation.

esriSetSymDifference

All rows present in either of the input selection sets, but not present in both, are copied to the output set. This is a Boolean XOR operation.


Field Summary
static int esriSetDifference
           
static int esriSetIntersection
           
static int esriSetSymDifference
           
static int esriSetUnion
           
 

Field Detail

esriSetUnion

public static final int esriSetUnion
See Also:
Constant Field Values

esriSetIntersection

public static final int esriSetIntersection
See Also:
Constant Field Values

esriSetDifference

public static final int esriSetDifference
See Also:
Constant Field Values

esriSetSymDifference

public static final int esriSetSymDifference
See Also:
Constant Field Values