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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2000-2016 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. /**
  17. *
  18. */
  19. package com.vaadin.data.util.converter;
  20. import java.util.Date;
  21. import java.util.Locale;
  22. import com.vaadin.data.Result;
  23. /**
  24. * Converter for handling conversion between {@link java.util.Date} and
  25. * {@link java.sql.Date}. This is used when a PopupDateField or InlineDateField
  26. * is connected to a java.sql.Date property. Note that information (time
  27. * information) is lost when converting from {@link java.util.Date} to
  28. * {@link java.sql.Date}.
  29. *
  30. * @since 8.0
  31. * @author Vaadin Ltd
  32. */
  33. public class DateToSqlDateConverter implements Converter<Date, java.sql.Date> {
  34. @Override
  35. public Result<java.sql.Date> convertToModel(Date value, Locale locale) {
  36. if (value == null) {
  37. return Result.ok(null);
  38. }
  39. return Result.ok(new java.sql.Date(value.getTime()));
  40. }
  41. @Override
  42. public Date convertToPresentation(java.sql.Date value, Locale locale) {
  43. if (value == null) {
  44. return null;
  45. }
  46. return new Date(value.getTime());
  47. }
  48. }