public class SCV extends CompositeDataType
This data type is used to communicate parameters and preferences to the filler application regarding the selection of an appropriate time slot, resource, location, or filler override criterion for an appointment.
Represents an HL7 SCV data type. This data type has the following attributes:
1. Parameter Class (CWE)Optional
2. Parameter Value (ST)Optional
This class provides accessors & mutators for the elements mentioned above. This class override the equal method, to check whether some other object is "equal to" this one.
User can also create Data Type through DataElementFactory
| Constructor and Description |
|---|
SCV()
Default Constructor for SCV
|
SCV(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for SCV class which takes two arguments and
sets the value in the respective member variable.
|
SCV(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for SCV class which takes five arguments and
sets the value in the respective member variable.
|
SCV(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for SCV class which takes six arguments and
sets the value in the respective member variable.
|
SCV(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for SCV class which takes four arguments and
sets the value in the respective member variable.
|
SCV(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for SCV class which takes five arguments and
sets the value in the respective member variable.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object objObject)
This method checks the equality of Object.
|
CWE |
getParameterClass()
Returns Parameter Class
|
ST |
getParameterValue()
Returns Parameter Value
|
void |
setParameterClass(CWE objParameterClass)
Sets the ParameterClass.
|
void |
setParameterValue(ST objST)
Sets the ParameterValue.
|
void |
setParameterValue(java.lang.String strParameterValue)
Sets the ParameterValue.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, validate, write, writeToXMLpublic SCV()
public SCV(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
throws InvalidComponentTypeException
iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public SCV(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
throws InvalidComponentTypeException
iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iTableNo - The Table number to which the value for the component is specified.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public SCV(int iComponentType, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.InvalidComponentTypeException - - if Component Type is not specified or valid.public SCV(int iComponentType, int iMinLength, int iMaxLength, java.lang.String strCLength, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.InvalidComponentTypeException - - if Component Type is not specified or valid.public SCV(int iComponentType, int iMinLength, int iMaxLength, java.lang.String strCLength, int ITableNo, IDataTypeMap objIDataTypeMap)
objIDataTypeMap - object of Data Type Map.iComponentType - The Type of the component i.e Component or a subcomponent.iMinLength - The Minimum length the DataType can have.iMaxLength - The Maximum length the DataType can have.iCLength - The Conformance length the DataType can have.iTableNo - The Table number to which the value for the component is specified.InvalidComponentTypeException - - if Component Type is not specified or valid.public void setParameterClass(CWE objParameterClass)
objParameterClass - identifies the parameter or preference being passed to the filler application.public void setParameterValue(java.lang.String strParameterValue)
strParameterValue - actual data value for that parameter.public void setParameterValue(ST objST)
objST - actual data value for that parameter.public CWE getParameterClass()
public ST getParameterValue()
public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.