Packages

abstract class EquivalenceRelation extends Serializable

Represents an equivalence relation between two schemas that determines whether two schemas should be considered equivalent in the final discovered schema.

For more details see [Parametric inference for massive JSON datasets](https://link.springer.com/article/10.1007/s00778-018-0532-7) by Baazizi et al

Annotations
@SerialVersionUID()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EquivalenceRelation
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EquivalenceRelation()

Abstract Value Members

  1. abstract def fuse(kind1: JsonSchema[_], kind2: JsonSchema[_]): Boolean

    Returns true if the two schemas should be considered equivalent.

    Returns true if the two schemas should be considered equivalent.

    kind1

    the first schema to compare

    kind2

    the second schem to compare