Class LongConversion

All Implemented Interfaces:
Conversion<String,Long>

public class LongConversion extends ObjectConversion<Long>
Converts Strings to Longs and vice versa
  • Constructor Details

    • LongConversion

      public LongConversion()
      Creates a Conversion from String to Long with default values to return when the input is null. This default constructor assumes the output of a conversion should be null when input is null
    • LongConversion

      public LongConversion(Long valueIfStringIsNull, String valueIfObjectIsNull)
      Creates a Conversion from String to Long with default values to return when the input is null.
      Parameters:
      valueIfStringIsNull - default Long value to be returned when the input String is null. Used when ObjectConversion.execute(String) is invoked.
      valueIfObjectIsNull - default String value to be returned when a Long input is null. Used when revert(Long) is invoked.
  • Method Details

    • fromString

      protected Long fromString(String input)
      Converts a String to Long.
      Specified by:
      fromString in class ObjectConversion<Long>
      Parameters:
      input - The String to be converted to T
      Returns:
      an instance of T, converted from the String input.