public interface DateRangeConstraint extends DataConstraint
Title: Service Event Fabric Core
Description: Defines a Date Range Constraint.
long
numbers and included in the range
([minValue, maxValue]
).
Copyright: Copyright (c) 2011
Company: StreamScape Technologies
Modifier and Type | Method and Description |
---|---|
java.util.Date |
getMaxValue()
Returns the maximum value of the range.
|
java.util.Date |
getMinValue()
Returns the minimum value of the range.
|
void |
setBoundaryValues(java.util.Date minValue,
java.util.Date maxValue)
Sets the minimum and maximum values of the range (the specified values are converted to
long numbers). |
void |
setMaxValue(java.util.Date value)
Sets the maximum value of the range (the specified value is converted to
long number). |
void |
setMinValue(java.util.Date value)
Sets the minimum value of the range (the specified value is converted to
long number). |
getDescription, matchesValue, setDescription
getName
java.util.Date getMinValue()
void setMinValue(java.util.Date value)
long
number).
[minValue, maxValue]
=> [maxValue, value]
).value
- the value to be set.java.util.Date getMaxValue()
void setMaxValue(java.util.Date value)
long
number).
[minValue, maxValue]
=> [value, minValue]
).value
- the value to be set.void setBoundaryValues(java.util.Date minValue, java.util.Date maxValue)
long
numbers).minValue
- the minimum value of the range.maxValue
- the maximum value of the range.Copyright © 2015-2024 StreamScape Technologies. All rights reserved.