public interface ICommandElement
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object objTempObject)
The implementation of this method Check for the equality of two objects.
|
int |
getCommandElementLength()
The implementation of this method retrieves the length of CommandElement.
|
IDicomValue |
getDicomValue()
The implementation of this method retrieves the value part of the Command Element.
|
int |
getLength()
The implementation of this method retrieves the length part of the
Command Element.
|
ITag |
getTag()
The implementation of this method retrieves the Tag part of the Command
Element.
|
ITransferSyntax |
getTransferSyntax()
The implementation of this method retrieves the TransferSyntax set in the
CommandElement object.
|
int |
getValueLength()
The implementation of this method retrieves the length of value for a
CommandElement.
|
int |
getValueMultiplicity()
The implementation of this method retrieves the value multiplicity of the
value in CommandElement.
|
int |
parse(IDicomStream objIDicomStream)
The implementation of this method parses the Command Element from the
given Stream.
|
int |
serialize(IDicomStream objIDicomStream)
The implementation of this method serializes the Command Element from the
given Stream.
|
void |
setCommandElementLength()
The implementation of this method sets the length of CommandElement.
|
void |
setDicomValue(IDicomValue objIDicomValue)
The implementation of this method sets the DicomValue as a value in the
CommandElement.
|
void |
setLength(int iLength)
The implementation of this method sets length of the CommandElement.
|
void |
setTag(int iGroupNumber,
int iElementNumber)
The implementation of this method sets the GroupNumber and ElementNumber
of the Command Element.
|
void |
setValueMultiplicity(int iVM)
The implementation of this method sets the value multiplicity of the
value of CommandElement.
|
int serialize(IDicomStream objIDicomStream) throws InvalidDataTypeException, java.io.IOException
objIDicomStream - Stream on which the DICOM data is availableInvalidDataTypeException - If DataType validation fails.java.io.IOException - If Input/Output operation fails.int parse(IDicomStream objIDicomStream) throws InvalidCommandElementException, java.io.IOException
objIDicomStream - Stream on which the DICOM data is availableInvalidDataElementException - If Data Element fails to satisfy Validation Criteria.java.io.IOException - If Input/Output operation fails.InvalidCommandElementException - the invalid command element exceptionvoid setLength(int iLength)
iLength - 4 bytes Length of Value in the Command Element.int getValueLength()
int getCommandElementLength()
int getLength()
int getValueMultiplicity()
void setValueMultiplicity(int iVM)
iVM - value multiplicity of the valuevoid setTag(int iGroupNumber,
int iElementNumber)
iGroupNumber - specifies the Group Number.iElementNumber - specifies the Element Number.void setCommandElementLength()
ITag getTag()
IDicomValue getDicomValue()
void setDicomValue(IDicomValue objIDicomValue)
objIDicomValue - object of DicomValue representing the value of CommandElementITransferSyntax getTransferSyntax()
boolean equals(java.lang.Object objTempObject)
equals in class java.lang.ObjectobjTempObject - the object to compare with.