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

biz.lobachev.annette.data_dictionary.builder.dsl.Enums.scala Maven / Gradle / Ivy

package biz.lobachev.annette.data_dictionary.builder.dsl

import biz.lobachev.annette.data_dictionary.builder.model.EnumData

trait Enums {

  def enumDef(
    id: String,
    name: String,
    length: Int,
    description: String = ""
  ) =
    EnumData(
      id = id.trim,
      name = name.trim,
      description = description.trim,
      length = length,
      elements = Seq.empty
    )

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy