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

io.ziqni.transformers.domain.BasicUnitOfMeasureModel.scala Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
/***
  *  Copyright (C) Ziqni Ltd, Inc - All Rights Reserved
  *  Unauthorized copying of this file, via any medium is strictly prohibited
  *  Proprietary and confidential
  *  Written by Ziqni Ltd, 2021
  */

package io.ziqni.transformers.domain

abstract class BasicUnitOfMeasureModel {

	/**
	  *
	  * @return Name of this UoM
	  */
	def getName: String

	/**
	  *
	  * @return IsoCode for the UoM
	  */
	def getIsoCode: Option[String]

	/**
	  *
	  * @return CL UoM id
	  */
	def getUnitOfMeasureId: String

	/**
	  *
	  * @return Multiplie for the UoM
	  */
	def getMultiplier: Double

	/**
	  *
	  * @return Type of UoM
	  */
	def getUnitOfMeasureType: String

	/**
	  *
	  * @return Key value pair of metadata information
	  */
	def getMetaData: Option[Map[String, String]]

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy