gov.noaa.pmel.util
Class SoTRange.Short

java.lang.Object
  |
  +--gov.noaa.pmel.util.SoTRange
        |
        +--gov.noaa.pmel.util.SoTRange.Short
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable
Enclosing class:
SoTRange

public static class SoTRange.Short
extends SoTRange

Inner class for SoTRange for type short.

Since:
sgt 2.0
See Also:
Serialized Form

Inner classes inherited from class gov.noaa.pmel.util.SoTRange
SoTRange.Double, SoTRange.Float, SoTRange.GeoDate, SoTRange.Integer, SoTRange.Short
 
Field Summary
 short delta
          The value of the increment
 short end
          The range's last value
 short start
          The range's first value
 
Constructor Summary
SoTRange.Short()
          Default constructor.
SoTRange.Short(short ustart, short uend)
          Construct SoTRange with start and end.
SoTRange.Short(short ustart, short uend, short udel)
          SoTRange constructor.
 
Method Summary
 void add(SoTRange range)
          Adds the SoTRange object to this SoTRange.
 SoTRange copy()
          Make a copy of the SoTRange.
 boolean equals(SoTRange r)
          Test for equality.
 void flipStartAndEnd()
          Exchange start and end values
 SoTValue getDelta()
          Get delta value
 java.lang.Object getDeltaObject()
           
 SoTValue getEnd()
          Get end value
 java.lang.Object getEndObject()
           
 SoTValue getStart()
          Get start value
 java.lang.Object getStartObject()
           
 boolean isStartOrEndMissing()
          Test if start or end values are missing
 boolean isTime()
          Test if SoTRange is temportal
 void setDelta(SoTValue value)
           
 void setEnd(SoTValue value)
           
 void setStart(SoTValue value)
           
 java.lang.String toString()
          Returns a string representation of the object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

start

public short start
The range's first value

end

public short end
The range's last value

delta

public short delta
The value of the increment
Constructor Detail

SoTRange.Short

public SoTRange.Short()
Default constructor.

SoTRange.Short

public SoTRange.Short(short ustart,
                      short uend)
Construct SoTRange with start and end. Default for delta is MAX_VALUE
Parameters:
ustart - first value
uend - last value

SoTRange.Short

public SoTRange.Short(short ustart,
                      short uend,
                      short udel)
SoTRange constructor.
Parameters:
ustart - first value
uend - last value
udel - increment value
Method Detail

getStart

public SoTValue getStart()
Get start value
Overrides:
getStart in class SoTRange

setStart

public void setStart(SoTValue value)
Overrides:
setStart in class SoTRange

getEnd

public SoTValue getEnd()
Get end value
Overrides:
getEnd in class SoTRange

setEnd

public void setEnd(SoTValue value)
Overrides:
setEnd in class SoTRange

getDelta

public SoTValue getDelta()
Get delta value
Overrides:
getDelta in class SoTRange

setDelta

public void setDelta(SoTValue value)
Overrides:
setDelta in class SoTRange

getStartObject

public java.lang.Object getStartObject()
Overrides:
getStartObject in class SoTRange

getEndObject

public java.lang.Object getEndObject()
Overrides:
getEndObject in class SoTRange

getDeltaObject

public java.lang.Object getDeltaObject()
Overrides:
getDeltaObject in class SoTRange

add

public void add(SoTRange range)
Adds the SoTRange object to this SoTRange. The resulting SoTRange is the smallest SoTRange that contains both the origial SoTRange and the specified SoTRange.
Overrides:
add in class SoTRange

equals

public boolean equals(SoTRange r)
Test for equality. For equality start, end, and delta must all be equal.
Overrides:
equals in class SoTRange

isTime

public boolean isTime()
Test if SoTRange is temportal
Overrides:
isTime in class SoTRange

flipStartAndEnd

public void flipStartAndEnd()
Exchange start and end values
Overrides:
flipStartAndEnd in class SoTRange

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 
Overrides:
toString in class SoTRange
Following copied from class: java.lang.Object
Returns:
a string representation of the object.

copy

public SoTRange copy()
Make a copy of the SoTRange.
Overrides:
copy in class SoTRange

isStartOrEndMissing

public boolean isStartOrEndMissing()
Test if start or end values are missing
Overrides:
isStartOrEndMissing in class SoTRange


Send comments about the Scientific Graphics toolkit to dwd@pmel.noaa.gov. For more information about Java Development in the EPIC Group see the EPIC Software Page
Generated on December 13 2001