Class ValidatorTemporalFuture<V>
- java.lang.Object
-
- io.github.mmm.validation.AbstractValidator<V>
-
- io.github.mmm.validation.AbstractValueValidator<V>
-
- io.github.mmm.validation.temporal.ValidatorTemporalFuture<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:
ValidatorInstantFuture
,ValidatorLocalDateFuture
,ValidatorLocalDateTimeFuture
,ValidatorLocalTimeFuture
,ValidatorOffsetDateTimeFuture
,ValidatorOffsetTimeFuture
,ValidatorZonedDateTimeFuture
public abstract class ValidatorTemporalFuture<V> extends AbstractValueValidator<V>
- Since:
- 1.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static String
ID
-
Fields inherited from interface io.github.mmm.validation.Validator
ID_MANDATORY
-
-
Constructor Summary
Constructors Constructor Description ValidatorTemporalFuture()
The constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description String
getId()
protected abstract boolean
isFuture(V value)
protected io.github.mmm.nls.NlsMessage
validateNotNull(V value)
-
Methods inherited from class io.github.mmm.validation.AbstractValueValidator
validate, validateNull
-
Methods inherited from class io.github.mmm.validation.AbstractValidator
equals, hashCode, isDynamic, 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, getMin, isMandatory, validate
-
-
-
-
Field Detail
-
ID
public static final String ID
- See Also:
getId()
, Constant Field Values
-
-
Method Detail
-
getId
public String getId()
-
validateNotNull
protected io.github.mmm.nls.NlsMessage validateNotNull(V value)
- Specified by:
validateNotNull
in classAbstractValueValidator<V>
-
isFuture
protected abstract boolean isFuture(V value)
- Parameters:
value
- the date to check.- Returns:
true
if in future,false
otherwise.
-
-