com.esri.aims.mtier.model.map.layer.raster
Class Band

java.lang.Object
  extended by com.esri.aims.mtier.model.map.layer.raster.Band
All Implemented Interfaces:
Serializable

public class Band
extends Object
implements Serializable

This object contains property values generated from a RasterInfo response. These properties include the band number, and the band value.

See Also:
Serialized Form

Constructor Summary
Band()
          Constructs an instance of a Band object.
 
Method Summary
 String getBandNumber()
          Returns the Band number value.
 String getBandValue()
          Returns the Band value.
 void setBandNumber(String value)
          Sets the Band Number.
 void setBandValue(String value)
          Sets the Band value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Band

public Band()
Constructs an instance of a Band object. Example:
Band band = new Band();

Method Detail

setBandNumber

public void setBandNumber(String value)
Sets the Band Number. This value is set by the response from the ArcIMS Application Server.

Parameters:
value - the band number value.
See Also:
getBandNumber()

getBandNumber

public String getBandNumber()
Returns the Band number value. Example:
String bandNumber = band.getBandNumber();

Returns:
String
See Also:
setBandNumber(java.lang.String)

setBandValue

public void setBandValue(String value)
Sets the Band value. This value is set by the response from the ArcIMS Application Server.

Parameters:
value - the band value.
See Also:
getBandValue()

getBandValue

public String getBandValue()
Returns the Band value. Example:
String bandValue = band.getBandValue();

Returns:
String
See Also:
setBandValue(java.lang.String)