package metadata
Type Members
-
case class
BloomFilterMetaData(bloomFilter: BloomFilter) extends MetadataType with Product with Serializable
Bloom Filter metadata
Bloom Filter metadata
- bloomFilter
the bloom filter instance
- Annotations
- @SerialVersionUID()
-
abstract
class
MetadataType extends Serializable
Abstract descriptor for types of metadata the might exist in the metadata store Each MetadataType describes the metaData for a single object
-
case class
MinMaxMetaData(min: Any, max: Any) extends MetadataType with Product with Serializable
MinMax meta data
MinMax meta data
- min
the minimum value
- max
the maximum value
- Annotations
- @SerialVersionUID()
-
case class
ValueListMetaData(values: HashSet[Any]) extends MetadataType with Product with Serializable
ValueList meta data
ValueList meta data
- values
Iterable containing the distinct strings that appear in the column
- Annotations
- @SerialVersionUID()