aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/data/validator
diff options
context:
space:
mode:
authorDenis <denis@vaadin.com>2017-01-19 10:01:03 +0200
committerGitHub <noreply@github.com>2017-01-19 10:01:03 +0200
commitf42b9657b818da483b839d3b43b4cf55552ef034 (patch)
treedd65e611eb326469b4dbeb84eefc2c69b57f3e5f /server/src/main/java/com/vaadin/data/validator
parentdafc8310259a2e79bb203c7f786c9aba5354937b (diff)
downloadvaadin-framework-f42b9657b818da483b839d3b43b4cf55552ef034.tar.gz
vaadin-framework-f42b9657b818da483b839d3b43b4cf55552ef034.zip
Introduce DateTimeFile and InlineDateTimeField. (#8218)
* Introduce DateTimeFile and InlineDateTimeField. Fixes #8132 * Correct and provide declarative tests. * Provide a date converter and UI tests.
Diffstat (limited to 'server/src/main/java/com/vaadin/data/validator')
-rw-r--r--server/src/main/java/com/vaadin/data/validator/DateTimeRangeValidator.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/server/src/main/java/com/vaadin/data/validator/DateTimeRangeValidator.java b/server/src/main/java/com/vaadin/data/validator/DateTimeRangeValidator.java
new file mode 100644
index 0000000000..9096a8cc70
--- /dev/null
+++ b/server/src/main/java/com/vaadin/data/validator/DateTimeRangeValidator.java
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2000-2016 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.data.validator;
+
+import java.time.LocalDateTime;
+import java.util.Comparator;
+
+/**
+ * Validator for validating that a {@link LocalDateTime} is inside a given
+ * range.
+ *
+ * @author Vaadin Ltd.
+ * @since 8.0
+ */
+public class DateTimeRangeValidator extends RangeValidator<LocalDateTime> {
+
+ /**
+ * Creates a validator for checking that a {@link LocalDateTime} is within a
+ * given range.
+ * <p>
+ * By default the range is inclusive i.e. both minValue and maxValue are
+ * valid values. Use {@link #setMinValueIncluded(boolean)} or
+ * {@link #setMaxValueIncluded(boolean)} to change it.
+ * </p>
+ *
+ * @param errorMessage
+ * the message to display in case the value does not validate.
+ * @param minValue
+ * The minimum value to accept or null for no limit
+ * @param maxValue
+ * The maximum value to accept or null for no limit
+ */
+ public DateTimeRangeValidator(String errorMessage, LocalDateTime minValue,
+ LocalDateTime maxValue) {
+ super(errorMessage, Comparator.naturalOrder(), minValue, maxValue);
+ }
+
+}