public class CodedSequenceItem
extends java.lang.Object
A class to encapsulate the attributes contained within a Sequence Item that represents a Coded Sequence item.
Modifier and Type | Field and Description |
---|---|
protected AttributeList |
list |
Constructor and Description |
---|
CodedSequenceItem(AttributeList l)
Construct a
CodedSequenceItem from a list of attributes. |
CodedSequenceItem(java.lang.String codeValue,
java.lang.String codingSchemeDesignator,
java.lang.String codeMeaning)
Construct a
CodedSequenceItem from string values for code value, scheme and meaning. |
CodedSequenceItem(java.lang.String codeValue,
java.lang.String codingSchemeDesignator,
java.lang.String codingSchemeVersion,
java.lang.String codeMeaning)
Construct a
CodedSequenceItem from string values for code value, scheme, version and meaning. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
static CodedSequenceItem[] |
getArrayOfCodedSequenceItemsOrNull(Attribute a)
Extract the items of a coded sequence attribute.
|
static CodedSequenceItem[] |
getArrayOfCodedSequenceItemsOrNull(AttributeList list,
AttributeTag tag)
Extract the items of a coded sequence attribute contained
within a list of attributes.
|
AttributeList |
getAttributeList()
Get the list of attributes in the
CodedSequenceItem . |
java.lang.String |
getCodeMeaning()
Get the code meaning.
|
java.lang.String |
getCodeValue()
Get the code value.
|
java.lang.String |
getCodingSchemeDesignator()
Get the coding scheme designator.
|
java.lang.String |
getCodingSchemeVersion()
Get the coding scheme version.
|
static CodedSequenceItem |
getSingleCodedSequenceItemOrNull(Attribute a)
Extract the first (hopefully only) item of a coded sequence attribute.
|
static CodedSequenceItem |
getSingleCodedSequenceItemOrNull(AttributeList list,
AttributeTag tag)
Extract the first (hopefully only) item of a coded sequence attribute contained
within a list of attributes.
|
int |
hashCode() |
java.lang.String |
toString()
Get a
String representation of the contents of the CodedSequenceItem . |
protected AttributeList list
public CodedSequenceItem(AttributeList l)
Construct a CodedSequenceItem
from a list of attributes.
l
- the list of attributes to include in the itempublic CodedSequenceItem(java.lang.String codeValue, java.lang.String codingSchemeDesignator, java.lang.String codeMeaning) throws DicomException
Construct a CodedSequenceItem
from string values for code value, scheme and meaning.
codeValue
- codingSchemeDesignator
- codeMeaning
- DicomException
public CodedSequenceItem(java.lang.String codeValue, java.lang.String codingSchemeDesignator, java.lang.String codingSchemeVersion, java.lang.String codeMeaning) throws DicomException
Construct a CodedSequenceItem
from string values for code value, scheme, version and meaning.
codeValue
- codingSchemeDesignator
- codingSchemeVersion
- codeMeaning
- DicomException
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public AttributeList getAttributeList()
Get the list of attributes in the CodedSequenceItem
.
CodedSequenceItem
public java.lang.String getCodeValue()
Get the code value.
public java.lang.String getCodingSchemeDesignator()
Get the coding scheme designator.
public java.lang.String getCodingSchemeVersion()
Get the coding scheme version.
public java.lang.String getCodeMeaning()
Get the code meaning.
public java.lang.String toString()
Get a String
representation of the contents of the CodedSequenceItem
.
toString
in class java.lang.Object
public static CodedSequenceItem getSingleCodedSequenceItemOrNull(AttributeList list, AttributeTag tag)
Extract the first (hopefully only) item of a coded sequence attribute contained within a list of attributes.
list
- the list in which to look for the Sequence attributetag
- the tag of the Sequence attribute to extractpublic static CodedSequenceItem getSingleCodedSequenceItemOrNull(Attribute a)
Extract the first (hopefully only) item of a coded sequence attribute.
a
- the attributepublic static CodedSequenceItem[] getArrayOfCodedSequenceItemsOrNull(AttributeList list, AttributeTag tag)
Extract the items of a coded sequence attribute contained within a list of attributes.
list
- the list in which to look for the Sequence attributetag
- the tag of the Sequence attribute to extractpublic static CodedSequenceItem[] getArrayOfCodedSequenceItemsOrNull(Attribute a)
Extract the items of a coded sequence attribute.
a
- the attribute