View Javadoc
1   package org.djutils.data.serialization;
2   
3   /**
4    * StringSerializer (de)serializes String objects.
5    * <p>
6    * Copyright (c) 2020-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7    * BSD-style license. See <a href="https://djutils.org/docs/current/djutils/licenses.html">DJUTILS License</a>.
8    * </p>
9    * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
10   * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
11   * @author <a href="https://dittlab.tudelft.nl">Wouter Schakel</a>
12   */
13  public class StringSerializer implements SpecificTextSerializer<String>
14  {
15      @Override
16      public String serialize(final String value, final String unit)
17      {
18          return value == null ? null : value.toString();
19      }
20  
21      @Override
22      public String deserialize(final Class<String> type, final String text, final String unit)
23      {
24          return (text == null || text.isEmpty()) ? null : text;
25      }
26  
27  }