module OpenEHR::RM::DataTypes::Quantity::ProportionKind
Constants
- PK_FRACTION
- PK_INTEGER_FRACTION
- PK_PERCENT
- PK_RATIO
- PK_UNITARY
Public Class Methods
valid_proportion_kind?(kind)
click to toggle source
# File lib/open_ehr/rm/data_types/quantity.rb, line 310 def ProportionKind.valid_proportion_kind?(kind) return true if kind >= 0 && kind <= 4 return false end