com.esri.arcgis.geodatabase
Interface IDERasterDataset

All Superinterfaces:
Serializable
All Known Implementing Classes:
DEMosaicDataset, DERasterDataset

public interface IDERasterDataset
extends Serializable

Provides access to the RasterDataset Data Element.

Product Availability

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


Method Summary
 int getBandCount()
          The number of bands in the collection.
 String getCompressionType()
          The compression technique applied to this RasterDataset.
 String getFormat()
          The format of this RasterRataset.
 String getSensorType()
          The sensor type of this RasterDataset.
 boolean isPermanent()
          Indicates if the dataset is temporary.
 void setBandCount(int count)
          The number of bands in the collection.
 void setCompressionType(String comp)
          The compression technique applied to this RasterDataset.
 void setFormat(String format)
          The format of this RasterRataset.
 void setPermanent(boolean b)
          Indicates if the dataset is temporary.
 void setSensorType(String sensor)
          The sensor type of this RasterDataset.
 

Method Detail

getFormat

String getFormat()
                 throws IOException,
                        AutomationException
The format of this RasterRataset.

Product Availability

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

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

setFormat

void setFormat(String format)
               throws IOException,
                      AutomationException
The format of this RasterRataset.

Product Availability

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

Parameters:
format - The format (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCompressionType

String getCompressionType()
                          throws IOException,
                                 AutomationException
The compression technique applied to this RasterDataset.

Product Availability

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

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

setCompressionType

void setCompressionType(String comp)
                        throws IOException,
                               AutomationException
The compression technique applied to this RasterDataset.

Product Availability

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

Parameters:
comp - The comp (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSensorType

String getSensorType()
                     throws IOException,
                            AutomationException
The sensor type of this RasterDataset.

Product Availability

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

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

setSensorType

void setSensorType(String sensor)
                   throws IOException,
                          AutomationException
The sensor type of this RasterDataset.

Product Availability

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

Parameters:
sensor - The sensor (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getBandCount

int getBandCount()
                 throws IOException,
                        AutomationException
The number of bands in the collection.

Product Availability

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

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

setBandCount

void setBandCount(int count)
                  throws IOException,
                         AutomationException
The number of bands in the collection.

Product Availability

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

Parameters:
count - The count (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isPermanent

boolean isPermanent()
                    throws IOException,
                           AutomationException
Indicates if the dataset is temporary.

Product Availability

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

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

setPermanent

void setPermanent(boolean b)
                  throws IOException,
                         AutomationException
Indicates if the dataset is temporary.

Product Availability

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

Parameters:
b - The b (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.