You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DateToSqlDateConverter.java 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2000-2018 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.data.converter;
  17. import java.util.Date;
  18. import com.vaadin.data.Converter;
  19. import com.vaadin.data.Result;
  20. import com.vaadin.data.ValueContext;
  21. /**
  22. * Converter for handling conversion between {@link java.util.Date} and
  23. * {@link java.sql.Date}. This is used when a PopupDateField or InlineDateField
  24. * is connected to a java.sql.Date property. Note that information (time
  25. * information) is lost when converting from {@link java.util.Date} to
  26. * {@link java.sql.Date}.
  27. *
  28. * @since 8.0
  29. * @author Vaadin Ltd
  30. */
  31. public class DateToSqlDateConverter implements Converter<Date, java.sql.Date> {
  32. @Override
  33. public Result<java.sql.Date> convertToModel(Date value,
  34. ValueContext context) {
  35. if (value == null) {
  36. return Result.ok(null);
  37. }
  38. return Result.ok(new java.sql.Date(value.getTime()));
  39. }
  40. @Override
  41. public Date convertToPresentation(java.sql.Date value,
  42. ValueContext context) {
  43. if (value == null) {
  44. return null;
  45. }
  46. return new Date(value.getTime());
  47. }
  48. }