io.github.mmm.validation.time.localtime.ValidatorLocalTimeFuture Maven / Gradle / Ivy
The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.validation.time.localtime;
import java.time.LocalTime;
import io.github.mmm.validation.time.ValidatorTemporalFuture;
/**
* Implementation of {@link ValidatorTemporalFuture} for {@link LocalTime}.
*
* @since 1.0.0
*/
public class ValidatorLocalTimeFuture extends ValidatorTemporalFuture {
@Override
protected boolean isFuture(LocalTime value) {
return value.isAfter(LocalTime.now());
}
}