Interface Converter<E>

  • Type Parameters:
    E - Source object type
    All Superinterfaces:
    Function<E,​Object>
    All Known Implementing Classes:
    Converters.RecordConverter

    public interface Converter<E>
    extends Function<E,​Object>
    Converts from a Calcite row to a Morel value (often a record).

    The Calcite row is represented as an array, ordered by field ordinal; the SML record is represented by a list, ordered by field name.