Interface StringConverterFactory

All Known Implementing Classes:
BooleanArrayStringConverterFactory, BooleanObjectArrayStringConverterFactory, ByteObjectArrayStringConverterFactory, CharObjectArrayStringConverterFactory, NumericArrayStringConverterFactory, NumericObjectArrayStringConverterFactory

public interface StringConverterFactory
Factory for StringConverter that allows converters to be created dynamically or easily initialised.

Implementations must be immutable and thread-safe.

Since:
1.5
  • Method Summary

    Modifier and Type
    Method
    Description
    Finds a converter by type.
  • Method Details

    • findConverter

      StringConverter<?> findConverter(Class<?> cls)
      Finds a converter by type.
      Parameters:
      cls - the type to lookup, not null
      Returns:
      the converter, null if not found
      Throws:
      RuntimeException - (or subclass) if source code is invalid