Interface RangeConstraint
- All Superinterfaces:
Constraint,DataTypeConstraint,Serializable
- All Known Implementing Classes:
SimpleConstraint
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
Modifier and TypeMethodDescriptionDetermines the minimum value of the fieldDetermines the maximum value of the fieldMethods inherited from interface org.kuali.rice.krad.datadictionary.validation.constraint.DataTypeConstraint
getDataType
-
Method Details
-
getInclusiveMax
String getInclusiveMax()Determines the maximum value of the fieldThe 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 fieldThe 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
-