com.esri.arcgis.geodatabase
Interface IRasterDataset3

All Superinterfaces:
IRasterDataset, IRasterDataset2, java.io.Serializable
All Known Implementing Classes:
FunctionRasterDataset, IRasterDataset3Proxy, RasterDataset

public interface IRasterDataset3
extends IRasterDataset2, java.io.Serializable

COM Interface 'IRasterDataset3'. Generated 3/19/2015 1:20:54 PM from 'C:\ArcGIS\COM\esriGeoDatabase.olb'

Description: 'Provides access to members that control a RasterDataset.' 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 IID2c046294_251c_43b4_8cff_d80c24dec088
           
static int xxDummy
          Deprecated. Internal use only
 
Fields inherited from interface com.esri.arcgis.geodatabase.IRasterDataset2
IID76aa6a59_25b4_4f26_9079_7a634759fed9
 
Fields inherited from interface com.esri.arcgis.geodatabase.IRasterDataset
IID7aca3d01_0629_11d2_8d24_0000f8780535
 
Method Summary
 int getBlockHeight()
          The native block height.
 int getBlockWidth()
          The native block width.
 int getFirstPyramidLevel()
          The first available pyramid level.
 IRasterLODInfos getLODInfos()
          The custom LOD infos.
 int getMaximumPyramidLevel()
          The maximum available pyramid level.
 boolean isCanWrite()
          Indicates if this RasterDataset is writable.
 void read(IPnt tlc, IRaster raster, IPixelBlock pixelBlock)
          Reads a block of pixels starting from the top left corner.
 void readPyramid(IPnt tlc, int pyramidLevel, IRaster raster, IPixelBlock pixelBlock)
          Reads a block of pixels at a given pyramid level.
 void refresh()
          Refreshes opened RasterDataset.
 void write(IPnt tlc, IRaster raster, int mode, IPixelBlock pixelBlock)
          Writes a block of pixels starting from the top left corner.
 
Methods inherited from interface com.esri.arcgis.geodatabase.IRasterDataset2
createFullRaster, createRaster, isEmpty
 
Methods inherited from interface com.esri.arcgis.geodatabase.IRasterDataset
basicOpenFromFile, canCopy, copy, createDefaultRaster, getCompleteName, getCompressionType, getFormat, getSensorType, openFromFile, precalculateStats
 

Field Detail

IID2c046294_251c_43b4_8cff_d80c24dec088

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

getBlockWidth

int getBlockWidth()
                  throws java.io.IOException,
                         AutomationException
The native block width.

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

getBlockHeight

int getBlockHeight()
                   throws java.io.IOException,
                          AutomationException
The native block height.

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

getMaximumPyramidLevel

int getMaximumPyramidLevel()
                           throws java.io.IOException,
                                  AutomationException
The maximum available pyramid level.

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

getFirstPyramidLevel

int getFirstPyramidLevel()
                         throws java.io.IOException,
                                AutomationException
The first available pyramid level.

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

getLODInfos

IRasterLODInfos getLODInfos()
                            throws java.io.IOException,
                                   AutomationException
The custom LOD infos.

Returns:
A reference to a com.esri.arcgis.geodatabase.IRasterLODInfos
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isCanWrite

boolean isCanWrite()
                   throws java.io.IOException,
                          AutomationException
Indicates if this RasterDataset is writable.

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

read

void read(IPnt tlc,
          IRaster raster,
          IPixelBlock pixelBlock)
          throws java.io.IOException,
                 AutomationException
Reads a block of pixels starting from the top left corner.

Parameters:
tlc - A reference to a com.esri.arcgis.geodatabase.IPnt (in)
raster - A reference to a com.esri.arcgis.geodatabase.IRaster (in)
pixelBlock - A reference to a com.esri.arcgis.geodatabase.IPixelBlock (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

write

void write(IPnt tlc,
           IRaster raster,
           int mode,
           IPixelBlock pixelBlock)
           throws java.io.IOException,
                  AutomationException
Writes a block of pixels starting from the top left corner.

Parameters:
tlc - A reference to a com.esri.arcgis.geodatabase.IPnt (in)
raster - A reference to a com.esri.arcgis.geodatabase.IRaster (in)
mode - A com.esri.arcgis.geodatabase.esriRasterWriteMode constant (in)
pixelBlock - A reference to a com.esri.arcgis.geodatabase.IPixelBlock (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

refresh

void refresh()
             throws java.io.IOException,
                    AutomationException
Refreshes opened RasterDataset.

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

readPyramid

void readPyramid(IPnt tlc,
                 int pyramidLevel,
                 IRaster raster,
                 IPixelBlock pixelBlock)
                 throws java.io.IOException,
                        AutomationException
Reads a block of pixels at a given pyramid level.

Parameters:
tlc - A reference to a com.esri.arcgis.geodatabase.IPnt (in)
pyramidLevel - The pyramidLevel (in)
raster - A reference to a com.esri.arcgis.geodatabase.IRaster (in)
pixelBlock - A reference to a com.esri.arcgis.geodatabase.IPixelBlock (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.