Class ErpBooleanConverter

All Implemented Interfaces:
ErpTypeConverter<ErpBoolean>, TypeConverter<ErpBoolean,String>

@Deprecated public class ErpBooleanConverter extends AbstractErpTypeConverter<ErpBoolean>
Deprecated.
This module will be discontinued, along with its classes and methods.
Type converter for ErpBoolean.
  • Field Details

    • INSTANCE

      public static final ErpBooleanConverter INSTANCE
      Deprecated.
      Statically created instance of this converter.
  • Constructor Details

    • ErpBooleanConverter

      public ErpBooleanConverter()
      Deprecated.
  • Method Details

    • getType

      @Nonnull public Class<ErpBoolean> getType()
      Deprecated.
      Description copied from interface: TypeConverter
      Getter for an class object of the type to convert from/to the domain-specific counterpart.
      Returns:
      The class object of T.
    • toDomainNonNull

      @Nonnull public ConvertedObject<String> toDomainNonNull(@Nonnull ErpBoolean object)
      Deprecated.
      Description copied from class: AbstractTypeConverter
      Actual converter implementation from an arbitrary object to its domain-specific counterpart.
      Specified by:
      toDomainNonNull in class AbstractTypeConverter<ErpBoolean,String>
      Parameters:
      object - The object to transform to its domain-specific counterpart.
      Returns:
      A wrapper containing the domain-specific counterpart.
    • fromDomainNonNull

      @Nonnull public ConvertedObject<ErpBoolean> fromDomainNonNull(@Nonnull String domainObject)
      Deprecated.
      Description copied from class: AbstractTypeConverter
      Actual converter implementation from a domain-specific object to an arbitrary type.
      Specified by:
      fromDomainNonNull in class AbstractTypeConverter<ErpBoolean,String>
      Parameters:
      domainObject - The domain-specific object to transform.
      Returns:
      A wrapper containing the converted object.