final case class PropertySet(arrayProperties: SchemaProperties[List[JsonSchema[_]]], booleanProperties: SchemaProperties[Boolean], integerProperties: SchemaProperties[BigInt], numberProperties: SchemaProperties[BigDecimal], objectProperties: SchemaProperties[Map[String, JsonSchema[_]]], stringProperties: SchemaProperties[String]) extends Product with Serializable
Sets of properties which can be used during schema discovery.
- arrayProperties
properties related to ArraySchema
- booleanProperties
properties related to BooleanSchema
- integerProperties
properties related to IntegerSchema
- numberProperties
properties related to NumberSchema
- stringProperties
properties related to StringSchema
- Alphabetic
- By Inheritance
- PropertySet
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new PropertySet(arrayProperties: SchemaProperties[List[JsonSchema[_]]], booleanProperties: SchemaProperties[Boolean], integerProperties: SchemaProperties[BigInt], numberProperties: SchemaProperties[BigDecimal], objectProperties: SchemaProperties[Map[String, JsonSchema[_]]], stringProperties: SchemaProperties[String])
Create a new set of properties
Create a new set of properties
- arrayProperties
properties related to ArraySchema
- booleanProperties
properties related to BooleanSchema
- integerProperties
properties related to IntegerSchema
- numberProperties
properties related to NumberSchema
- stringProperties
properties related to StringSchema
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val arrayProperties: SchemaProperties[List[JsonSchema[_]]]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val booleanProperties: SchemaProperties[Boolean]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val integerProperties: SchemaProperties[BigInt]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val numberProperties: SchemaProperties[BigDecimal]
- val objectProperties: SchemaProperties[Map[String, JsonSchema[_]]]
- def only(propClasses: Seq[Class[_]]): PropertySet
Create a new property set with only the specific sequence of properties.
Create a new property set with only the specific sequence of properties.
- propClasses
the property classes to include
- returns
a new property set with only the given properties
- def onlyNamed(propNames: Seq[String]): PropertySet
Create a new property set with only the specific sequence of named properties.
Create a new property set with only the specific sequence of named properties.
- propNames
the property names to include
- returns
a new property set with only the named properties
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val stringProperties: SchemaProperties[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def without(propClasses: Seq[Class[_]]): PropertySet
Create a new property set without the specific sequence of properties.
Create a new property set without the specific sequence of properties.
- propClasses
the property classes to exclude
- returns
a new property set without the given properties
- def withoutNamed(propNames: Seq[String]): PropertySet
Create a new property set without the specific sequence of named properties.
Create a new property set without the specific sequence of named properties.
- propNames
the property names to exclude
- returns
a new property set without the given properties