com.esri.arcgis.geometry
Interface IGeoTransformationOperationSet

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
GeoTransformationOperationSet, IGeoTransformationOperationSetProxy

public interface IGeoTransformationOperationSet
extends java.io.Serializable

COM Interface 'IGeoTransformationOperationSet'. Generated 3/19/2015 1:20:52 PM from 'C:\ArcGIS\COM\esriGeometry.olb'

Description: 'Provides access to members that control a set of geographic transformation operators (GT + direction).' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID0049530e_e3ec_11d3_9f62_00c04f6bdd7f
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 boolean find(int direction, IGeoTransformation gT)
          Check a geographic transformation and a direction to see if it exists in the set.
 void get(IGeographicCoordinateSystem pFromGCS, IGeographicCoordinateSystem pToGCS, int[] direction, IGeoTransformation[] transformation)
          Returns a default geographic transformation.
 int getCount()
          The number of geographic transformations in the set.
 void next(int[] direction, IGeoTransformation[] gT)
          Retrieves the next geographic transformation in the set.
 void remove(int direction, IGeoTransformation transformation)
          Deletes a particular geographic transformation.
 void removeAll()
          Deletes all transformations in the set.
 void removeByKey(IGeographicCoordinateSystem pFromGCS, IGeographicCoordinateSystem pToGCS)
          Deletes a particular geographic transformation by its from and to GCS.
 void reset()
          Reinitializes the transformation set iterator.
 void set(int direction, IGeoTransformation transformation)
          Sets a default geographic transformation.
 

Field Detail

IID0049530e_e3ec_11d3_9f62_00c04f6bdd7f

static final int IID0049530e_e3ec_11d3_9f62_00c04f6bdd7f
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

set

void set(int direction,
         IGeoTransformation transformation)
         throws java.io.IOException,
                AutomationException
Sets a default geographic transformation.

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (in)
transformation - A reference to a com.esri.arcgis.geometry.IGeoTransformation (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

get

void get(IGeographicCoordinateSystem pFromGCS,
         IGeographicCoordinateSystem pToGCS,
         int[] direction,
         IGeoTransformation[] transformation)
         throws java.io.IOException,
                AutomationException
Returns a default geographic transformation.

Parameters:
pFromGCS - A reference to a com.esri.arcgis.geometry.IGeographicCoordinateSystem (in)
pToGCS - A reference to a com.esri.arcgis.geometry.IGeographicCoordinateSystem (in)
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (out: use single element array)
transformation - A reference to a com.esri.arcgis.geometry.IGeoTransformation (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

find

boolean find(int direction,
             IGeoTransformation gT)
             throws java.io.IOException,
                    AutomationException
Check a geographic transformation and a direction to see if it exists in the set.

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (in)
gT - A reference to a com.esri.arcgis.geometry.IGeoTransformation (in)
Returns:
The found
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int direction,
            IGeoTransformation transformation)
            throws java.io.IOException,
                   AutomationException
Deletes a particular geographic transformation.

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (in)
transformation - A reference to a com.esri.arcgis.geometry.IGeoTransformation (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeByKey

void removeByKey(IGeographicCoordinateSystem pFromGCS,
                 IGeographicCoordinateSystem pToGCS)
                 throws java.io.IOException,
                        AutomationException
Deletes a particular geographic transformation by its from and to GCS.

Parameters:
pFromGCS - A reference to a com.esri.arcgis.geometry.IGeographicCoordinateSystem (in)
pToGCS - A reference to a com.esri.arcgis.geometry.IGeographicCoordinateSystem (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

next

void next(int[] direction,
          IGeoTransformation[] gT)
          throws java.io.IOException,
                 AutomationException
Retrieves the next geographic transformation in the set.

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (out: use single element array)
gT - A reference to a com.esri.arcgis.geometry.IGeoTransformation (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

void reset()
           throws java.io.IOException,
                  AutomationException
Reinitializes the transformation set iterator.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws java.io.IOException,
                      AutomationException
Deletes all transformations in the set.

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
The number of geographic transformations in the set.

Returns:
The gtCount
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.