public interface BufferParam
Modifier and Type | Field and Description |
---|---|
static int |
CACHED |
static int |
MEMORY |
static int |
READ_ONLY |
static int |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
int |
getAccessType()
Gets the type of access defined as constant in Buffer interface
|
int |
getBandCount()
Gets number of bands
|
BandList |
getBandList()
Gets the band list
|
RasterDataStore |
getDataStore() |
int |
getDataType()
Gets the data type
|
int |
getHeight()
Returns the height in pixels
|
int[] |
getRoWindow() |
Extent |
getRoWindowExtent() |
int |
getWidth()
Returns the width in pixels
|
int |
getX()
Returns the X upper left coordinate
|
int |
getY()
Returns the Y upper left coordinate
|
boolean |
isMalloc() |
void |
setAccessType(int accessType)
Sets the type of access defined as constant in Buffer interface
|
void |
setBandCount(int bandCount)
Sets number of bands
|
void |
setBandList(BandList bands)
Sets the band list
|
void |
setDataStore(RasterDataStore roDataSource) |
void |
setDataType(int dataType)
Sets the data type
|
void |
setHeight(int height)
Sets the height in pixels
|
void |
setMalloc(boolean malloc) |
void |
setRoWindow(int[] roWindow) |
void |
setRoWindowExtent(Extent roWindow) |
void |
setWidth(int width)
Sets the width in pixels
|
void |
setX(int x)
Sets the X upper left coordinate
|
void |
setY(int y)
Sets the Y upper left coordinate
|
static final int UNDEFINED
static final int CACHED
static final int READ_ONLY
static final int MEMORY
int getWidth()
void setWidth(int width)
width
- Width in pixels of this rasterint getHeight()
void setHeight(int height)
height
- Height in pixels of this rasterint getX()
void setX(int x)
int getY()
void setY(int y)
int getDataType()
void setDataType(int dataType)
dataType
- int getBandCount()
void setBandCount(int bandCount)
bandCount
- void setAccessType(int accessType)
int getAccessType()
void setBandList(BandList bands)
file
- BandList getBandList()
void setDataStore(RasterDataStore roDataSource)
RasterDataStore getDataStore()
void setMalloc(boolean malloc)
boolean isMalloc()
void setRoWindow(int[] roWindow)
int[] getRoWindow()
void setRoWindowExtent(Extent roWindow)
Extent getRoWindowExtent()