7.0 Action Request System Java API

com.remedy.arsys.api
Class IntegerLimitInfo

java.lang.Object
  extended bycom.remedy.arsys.api.FieldLimitInfo
      extended bycom.remedy.arsys.api.IntegerLimitInfo
All Implemented Interfaces:
java.lang.Cloneable

public class IntegerLimitInfo
extends FieldLimitInfo
implements java.lang.Cloneable

The IntegerLimitInfo class defines the value limits for an integer(DataType.INTEGER) field.


Constructor Summary
IntegerLimitInfo(long low, long high)
          Constructs a new IntegerLimitInfo object
 
Method Summary
 java.lang.Object clone()
          Makes a copy of the object.
 long getHighRange()
          Returns the upper-range limit.
 long getLowRange()
          Returns the lower-range limit.
 void setHighRange(long high)
          Sets the upper-range limit.
 void setLowRange(long low)
          Sets the lower-range limit.
 
Methods inherited from class com.remedy.arsys.api.FieldLimitInfo
getDataType
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntegerLimitInfo

public IntegerLimitInfo(long low,
                        long high)
Constructs a new IntegerLimitInfo object

Parameters:
low - Lower-range limit.
high - Upper-range limit.
Method Detail

getLowRange

public long getLowRange()
Returns the lower-range limit.


getHighRange

public long getHighRange()
Returns the upper-range limit.


setLowRange

public void setLowRange(long low)
Sets the lower-range limit.


setHighRange

public void setHighRange(long high)
Sets the upper-range limit.


clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Makes a copy of the object.

Overrides:
clone in class FieldLimitInfo
Throws:
java.lang.CloneNotSupportedException

7.0 Action Request System Java API