public class WVS extends CompositeDataType
This data type identifies the source of the waveform connected to a channel.
Represents an HL7 WVS data type. This data type has the following attributes:
1. Source One Name (ST)Required
2. Source Two Name (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
| Modifier and Type | Field and Description |
|---|---|
static int |
HL7_WVS_SOURCE_ONE_NAME
Constant declared for Source One Name
|
static int |
HL7_WVS_SOURCE_TWO_NAME
Constant declared for Source Two Name
|
| Constructor and Description |
|---|
WVS()
Default Constructor for WVS
|
WVS(int iComponentType,
IDataTypeMap objIDataTypeMap)
Constructor for WVS class which takes two arguments and
sets the value in the respective member variable.
|
WVS(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
IDataTypeMap objIDataTypeMap)
Constructor for WVS class which takes five arguments and
sets the value in the respective member variable.
|
WVS(int iComponentType,
int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int ITableNo,
IDataTypeMap objIDataTypeMap)
Constructor for WVS class which takes six arguments and
sets the value in the respective member variable.
|
WVS(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
Constructor for WVS class which takes four arguments and
sets the value in the respective member variable.
|
WVS(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iTableNo,
int iComponentType)
Constructor for WVS 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.
|
ST |
getSourceOneName()
Returns Source One Name
|
ST |
getSourceTwoName()
Returns Source Two Name
|
void |
setSourceOneName(ST objST)
Sets the SourceOneName.
|
void |
setSourceOneName(java.lang.String strSourceOneName)
Sets the SourceOneName.
|
void |
setSourceTwoName(ST objST)
Sets the SourceTwoName.
|
void |
setSourceTwoName(java.lang.String strSourceTwoName)
Sets the SourceTwoName.
|
boolean |
validate()
The Method validates the Input value,and if validated properly then returns true.
|
copy, dumpDataType, getAttributes, getDataTypeName, getLength, getValue, isPrimitive, read, setValue, write, writeToXMLpublic static final int HL7_WVS_SOURCE_ONE_NAME
public static final int HL7_WVS_SOURCE_TWO_NAME
public WVS()
public WVS(int iMinLength,
int iMaxLength,
java.lang.String strCLength,
int iComponentType)
throws InvalidComponentTypeException
iMaxLength - - The Maximum 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 WVS(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 WVS(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 WVS(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 WVS(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 setSourceOneName(java.lang.String strSourceOneName)
strSourceOneName - identifies the first input for the waveform source.public void setSourceOneName(ST objST)
objST - identifies the first input for the waveform source.public void setSourceTwoName(java.lang.String strSourceTwoName)
strSourceTwoName - identifies the second input for the waveform source if a differential input is used.public void setSourceTwoName(ST objST)
objST - identifies the second input for the waveform source if a differential input is used.public ST getSourceOneName()
public ST getSourceTwoName()
public boolean validate()
throws InvalidDataTypeException
validate in interface IDataTypevalidate in class CompositeDataTypeInvalidDataTypeException - - if Invalid values is entered or Mandatory field is missing.public boolean equals(java.lang.Object objObject)
equals in class java.lang.ObjectobjObject - object of Object class.