com.esri.arcgis.geodatabase
Interface esriSetOperation

All Superinterfaces:
Serializable

public interface esriSetOperation
extends Serializable

Set Operations.

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.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriSetDifference
          The Difference between the first and the second sets.
static int esriSetIntersection
          The Intersection of the two sets.
static int esriSetSymDifference
          The Symmetric Difference between the two sets.
static int esriSetUnion
          The Union of the two sets.
 

Field Detail

esriSetUnion

static final int esriSetUnion
The Union of the two sets.

See Also:
Constant Field Values

esriSetIntersection

static final int esriSetIntersection
The Intersection of the two sets.

See Also:
Constant Field Values

esriSetDifference

static final int esriSetDifference
The Difference between the first and the second sets.

See Also:
Constant Field Values

esriSetSymDifference

static final int esriSetSymDifference
The Symmetric Difference between the two sets.

See Also:
Constant Field Values