Packages

object AbstractConverter

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractConverter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class AbstractApiError extends Exception

    An exception used for control flow, to catch old implementations of the API with don't implement all methods.

    An exception used for control flow, to catch old implementations of the API with don't implement all methods. Stack traces and suppressed exceptions are disabled for performance.

  2. case class BasicConfig(type: String, idField: Option[Expression], caches: Map[String, Config], userData: Map[String, Expression]) extends ConverterConfig with Product with Serializable

    Basic converter config implementation, useful if a converter doesn't have additional configuration

    Basic converter config implementation, useful if a converter doesn't have additional configuration

    idField

    id expression

    caches

    caches

    userData

    user data expressions

  3. case class BasicField(name: String, transforms: Option[Expression]) extends Field with Product with Serializable

    Basic field implementation, useful if a converter doesn't have custom fields

    Basic field implementation, useful if a converter doesn't have custom fields

    name

    field name

    transforms

    transforms

  4. case class BasicOptions(validators: Seq[String], reporters: Seq[Config], parseMode: ParseMode, errorMode: ErrorMode, encoding: Charset) extends ConverterOptions with Product with Serializable

    Basic converter options implementation, useful if a converter doesn't have additional options

    Basic converter options implementation, useful if a converter doesn't have additional options

    validators

    validator

    reporters

    metric reporters

    parseMode

    parse mode

    errorMode

    error mode

    encoding

    file/stream encoding

  5. type Dag = Map[Field, Set[Field]]

Value Members

  1. object BasicOptions extends Serializable
  2. object FieldApiError extends AbstractApiError
  3. object TransformerFunctionApiError extends AbstractApiError