org.rhq.core.clientapi.descriptor.configuration
Class IntegerConstraintType

java.lang.Object
  extended by org.rhq.core.clientapi.descriptor.configuration.IntegerConstraintType

public class IntegerConstraintType
extends java.lang.Object

Constraint to indicate a value must be an integer. If specified, the minimum and maximum values will indicate the range in which the value must fall. This range is inclusive, so a value that is equal to either the minimum or the maximum will be considered valid.

Java class for integerConstraintType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="integerConstraintType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="maximum" type="{http://www.w3.org/2001/XMLSchema}integer" />
       <attribute name="minimum" type="{http://www.w3.org/2001/XMLSchema}integer" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.math.BigInteger maximum
           
protected  java.math.BigInteger minimum
           
 
Constructor Summary
IntegerConstraintType()
           
 
Method Summary
 java.math.BigInteger getMaximum()
          Gets the value of the maximum property.
 java.math.BigInteger getMinimum()
          Gets the value of the minimum property.
 void setMaximum(java.math.BigInteger value)
          Sets the value of the maximum property.
 void setMinimum(java.math.BigInteger value)
          Sets the value of the minimum property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

maximum

protected java.math.BigInteger maximum

minimum

protected java.math.BigInteger minimum
Constructor Detail

IntegerConstraintType

public IntegerConstraintType()
Method Detail

getMaximum

public java.math.BigInteger getMaximum()
Gets the value of the maximum property.

Returns:
possible object is BigInteger

setMaximum

public void setMaximum(java.math.BigInteger value)
Sets the value of the maximum property.

Parameters:
value - allowed object is BigInteger

getMinimum

public java.math.BigInteger getMinimum()
Gets the value of the minimum property.

Returns:
possible object is BigInteger

setMinimum

public void setMinimum(java.math.BigInteger value)
Sets the value of the minimum property.

Parameters:
value - allowed object is BigInteger


Copyright © 2008-2009 Red Hat, Inc.. All Rights Reserved.