com.nedap.archie.rm.datavalues.quantity.ProportionKind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openehr-rm Show documentation
Show all versions of openehr-rm Show documentation
An implementation of the openehr reference model
package com.nedap.archie.rm.datavalues.quantity;
/**
* Created by pieter.bos on 01/03/16.
*/
public enum ProportionKind {
RATIO(0), UNITARY(1), PERCENT(2), FRACTION(3), INTEGER_FRACTION(4);
private final long pk;
ProportionKind(long pk) {
this.pk = pk;
}
public long getPk() {
return pk;
}
}