All Downloads are FREE. Search and download functionalities are using the official Maven repository.

flatgraph.PropertyKey.scala Maven / Gradle / Ivy

There is a newer version: 0.0.91
Show newest version
package flatgraph

sealed trait PropertyKey[ValueType, CompleteType] {
  def kind: Int
  def name: String
}

case class SinglePropertyKey[ValueType](kind: Int, name: String, default: ValueType) extends PropertyKey[ValueType, ValueType]

case class OptionalPropertyKey[ValueType](kind: Int, name: String) extends PropertyKey[ValueType, Option[ValueType]]

case class MultiPropertyKey[ValueType](kind: Int, name: String) extends PropertyKey[ValueType, IndexedSeq[ValueType]]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy