Class ParameterNameValue
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.params.model.ParameterNameValue
-
- All Implemented Interfaces:
java.lang.Comparable<ParameterNameValue>
public class ParameterNameValue extends java.lang.Object implements java.lang.Comparable<ParameterNameValue>
Represents a record in parameter_names for which we don't know the parameter_name_id value, or which we need to create
-
-
Constructor Summary
Constructors Constructor Description ParameterNameValue(java.lang.String parameterName)
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(ParameterNameValue that)
java.lang.String
getParameterName()
java.lang.Integer
getParameterNameId()
void
setParameterNameId(java.lang.Integer parameterNameId)
-
-
-
Method Detail
-
compareTo
public int compareTo(ParameterNameValue that)
- Specified by:
compareTo
in interfacejava.lang.Comparable<ParameterNameValue>
-
getParameterName
public java.lang.String getParameterName()
- Returns:
- the parameterName
-
getParameterNameId
public java.lang.Integer getParameterNameId()
- Returns:
- the parameterNameId
-
setParameterNameId
public void setParameterNameId(java.lang.Integer parameterNameId)
- Parameters:
parameterNameId
- the parameterNameId to set
-
-