Class ValidatorTemporalAfter<V>
- java.lang.Object
-
- io.github.mmm.validation.AbstractValidator<V>
-
- io.github.mmm.validation.AbstractValueValidator<V>
-
- io.github.mmm.validation.temporal.ValidatorTemporalAfter<V>
-
- Type Parameters:
V- is the generic type of the value tovalidate.
- All Implemented Interfaces:
io.github.mmm.base.lang.Composable<Validator<?>>,Validator<V>,Iterable<Validator<?>>
- Direct Known Subclasses:
ValidatorInstantAfter,ValidatorLocalDateAfter,ValidatorLocalDateTimeAfter,ValidatorLocalTimeAfter,ValidatorOffsetDateTimeAfter,ValidatorOffsetTimeAfter,ValidatorZonedDateTimeAfter
public abstract class ValidatorTemporalAfter<V> extends AbstractValueValidator<V>
- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static StringID-
Fields inherited from interface io.github.mmm.validation.Validator
ID_MANDATORY
-
-
Constructor Summary
Constructors Constructor Description ValidatorTemporalAfter(Supplier<V> valueSource)The constructor.ValidatorTemporalAfter(V value)The constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetId()ObjectgetMin()inthashCode()protected abstract booleanisAfter(V value, V limit)booleanisDynamic()protected io.github.mmm.nls.NlsMessagevalidateNotNull(V value)-
Methods inherited from class io.github.mmm.validation.AbstractValueValidator
validate, validateNull
-
Methods inherited from class io.github.mmm.validation.AbstractValidator
source2string, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.github.mmm.base.lang.Composable
getChild, getChildCount, iterator
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface io.github.mmm.validation.Validator
append, append, containsId, getMax, isMandatory, validate
-
-
-
-
Field Detail
-
ID
public static final String ID
- See Also:
getId(), Constant Field Values
-
-
Constructor Detail
-
ValidatorTemporalAfter
public ValidatorTemporalAfter(Supplier<V> valueSource)
The constructor.- Parameters:
valueSource- theSupplierof the value to compare to.
-
ValidatorTemporalAfter
public ValidatorTemporalAfter(V value)
The constructor.- Parameters:
value- the value to compare to.
-
-
Method Detail
-
isDynamic
public boolean isDynamic()
- Overrides:
isDynamicin classAbstractValidator<V>
-
getId
public String getId()
-
validateNotNull
protected io.github.mmm.nls.NlsMessage validateNotNull(V value)
- Specified by:
validateNotNullin classAbstractValueValidator<V>
-
isAfter
protected abstract boolean isAfter(V value, V limit)
- Parameters:
value- the date to check.limit- the upper bound to compare to.- Returns:
trueifvalueis afterlimit,falseotherwise.
-
getMin
public Object getMin()
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractValidator<V>
-
equals
public boolean equals(Object obj)
- Overrides:
equalsin classAbstractValidator<V>
-
-