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

biz.lobachev.annette.data_dictionary.builder.model.EnumData.scala Maven / Gradle / Ivy

package biz.lobachev.annette.data_dictionary.builder.model

case class EnumData(
  id: String,
  name: String,
  description: String = "",
  length: Int,
  elements: Seq[(String, String)],
  labels: Labels = Map.empty,
  componentId: Option[String] = None,
) {
  def withValues(seq: (String, String)*) = copy(elements = seq)

  def withLabels(seq: Label*) = copy(labels = labels ++ seq.map(a => a.key -> a.value))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy