org.kuali.rice.krad.datadictionary.validation.constraint
Interface RangeConstraint

All Superinterfaces:
Constraint, DataTypeConstraint, Serializable
All Known Subinterfaces:
RangeConstrainable
All Known Implementing Classes:
SimpleConstraint

public interface RangeConstraint
extends DataTypeConstraint

A range constraint that restricts a value to a specified range

This range can be numeric or it can be a date.

Since:
2.0
Author:
Kuali Rice Team (rice.collab@kuali.org)

Method Summary
 String getExclusiveMin()
          Determines the minimum value of the field
 String getInclusiveMax()
          Determines the maximum value of the field
 
Methods inherited from interface org.kuali.rice.krad.datadictionary.validation.constraint.DataTypeConstraint
getDataType
 

Method Detail

getInclusiveMax

String getInclusiveMax()
Determines the maximum value of the field

The inclusiveMax element determines the maximum allowable value for data entry editing purposes. Value can be an integer or decimal value such as -.001 or 99.

Returns:
String specifying the maximum value

getExclusiveMin

String getExclusiveMin()
Determines the minimum value of the field

The exclusiveMin element determines the minimum allowable value for data entry editing purposes. Value can be an integer or decimal value such as -.001 or 99.

Returns:
String specifying the minimum value


Copyright © 2005-2013 The Kuali Foundation. All Rights Reserved.