Package org.djutils.data.serialization
Class FloatScalarSerializer<U extends org.djunits.unit.Unit<U>,S extends org.djunits.value.vfloat.scalar.base.FloatScalarInterface<U,S>>
- java.lang.Object
 - 
- org.djutils.data.serialization.FloatScalarSerializer<U,S>
 
 
- 
- Type Parameters:
 U- the unit typeS- the scalar type
- All Implemented Interfaces:
 TextSerializer<S>
public class FloatScalarSerializer<U extends org.djunits.unit.Unit<U>,S extends org.djunits.value.vfloat.scalar.base.FloatScalarInterface<U,S>> extends Object implements TextSerializer<S>
ScalarSerializer (de)serializes DJUNITS scalars.
Copyright (c) 2020-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://djutils.org. The DJUTILS project is distributed under a three-clause BSD-style license, which can be found at https://djutils.org/docs/license.html.- Author:
 - Alexander Verbraeck, Peter Knoppers, Wouter Schakel
 
 
- 
- 
Constructor Summary
Constructors Constructor Description FloatScalarSerializer() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Sdeserialize(String text)Deserialize a String to the correct FloatScalar value in line with the FloatScalarSerializer.serialize method.Stringserialize(Object value)Serialize a FloatScalar value to text in such a way that it can be deserialized with the corresponding deserializer. 
 - 
 
- 
- 
Method Detail
- 
serialize
public String serialize(Object value)
Serialize a FloatScalar value to text in such a way that it can be deserialized with the corresponding deserializer. In this case, it serializes the class name of the Scalar, followed by a hash sign, followed by the printed value of the scalar including the unit. So a Length of 12.5 kilometer will return "org.djunits.value.vdouble.scalar.Length#12.5 km".- Specified by:
 serializein interfaceTextSerializer<U extends org.djunits.unit.Unit<U>>- Parameters:
 value- Object; the scalar to serialize- Returns:
 - String; a string representation of the value that can later be deserialized
 
 
- 
deserialize
public S deserialize(String text)
Deserialize a String to the correct FloatScalar value in line with the FloatScalarSerializer.serialize method. In this case, it assumes a string with the class name of the Scalar, followed by a hash sign, followed by the printed value of the scalar including the unit. So, the String "org.djunits.value.vdouble.scalar.Length#12.5 km" will be deserialized into a Length of 12500 m with LengthUnit.KILOMETER as the display unit. The method caches the valueOf(String) method for repeated use.- Specified by:
 deserializein interfaceTextSerializer<U extends org.djunits.unit.Unit<U>>- Parameters:
 text- String; the text to deserialize- Returns:
 - S; the reconstructed scalar
 
 
 - 
 
 -