com.esri.arcgis.geometry
Interface IConstructDomainExtent

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IConstructDomainExtent2
All Known Implementing Classes:
GeometryEnvironment, IConstructDomainExtent2Proxy, IConstructDomainExtentProxy

public interface IConstructDomainExtent
extends java.io.Serializable

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

Description: 'Provides access to members that construct domain extents based on defined precision.' 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 IID3f419d43_5486_11d2_aaeb_00c04fa33c20
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 IEnvelope constructDomainExtent(IEnvelope extent, double scale)
          Constructs a new envelope by expanding the input envelope about its center.
 void constructZMDomainExtent(double inMin, double inMax, double scale, double[] outMin, double[] outMax)
          (deprecated, use ConstructZMDomainExtent2) Constructs a low precision Z or M domain extent centered on the specified extent.
 

Field Detail

IID3f419d43_5486_11d2_aaeb_00c04fa33c20

static final int IID3f419d43_5486_11d2_aaeb_00c04fa33c20
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

constructDomainExtent

IEnvelope constructDomainExtent(IEnvelope extent,
                                double scale)
                                throws java.io.IOException,
                                       AutomationException
Constructs a new envelope by expanding the input envelope about its center. Scale is typically a power of 10 indicating the number of sig figs to preserve. If its zero, the extent is expanded 1.5 times (subject to some constraints).

Parameters:
extent - A reference to a com.esri.arcgis.geometry.IEnvelope (in)
scale - The scale (in)
Returns:
A reference to a com.esri.arcgis.geometry.IEnvelope
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

constructZMDomainExtent

void constructZMDomainExtent(double inMin,
                             double inMax,
                             double scale,
                             double[] outMin,
                             double[] outMax)
                             throws java.io.IOException,
                                    AutomationException
(deprecated, use ConstructZMDomainExtent2) Constructs a low precision Z or M domain extent centered on the specified extent. scale is 1/(desired resolution). If scale is 0.0, a default of 1,000,000.0 is used.

Parameters:
inMin - The inMin (in)
inMax - The inMax (in)
scale - The scale (in)
outMin - The outMin (out: use single element array)
outMax - The outMax (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.