Package gov.nih.mipav.model.file
Enum FileDicomTagInfo.VR
- java.lang.Object
-
- java.lang.Enum<FileDicomTagInfo.VR>
-
- gov.nih.mipav.model.file.FileDicomTagInfo.VR
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FileDicomTagInfo.VR>
- Enclosing class:
- FileDicomTagInfo
public static enum FileDicomTagInfo.VR extends java.lang.Enum<FileDicomTagInfo.VR>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DicomType
getType()
boolean
reservedBytes()
Returns whether tags with the VR use two reserved bytes in its encodingstatic FileDicomTagInfo.VR
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileDicomTagInfo.VR[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ST
public static final FileDicomTagInfo.VR ST
-
LT
public static final FileDicomTagInfo.VR LT
-
CS
public static final FileDicomTagInfo.VR CS
-
UI
public static final FileDicomTagInfo.VR UI
-
PN
public static final FileDicomTagInfo.VR PN
-
AS
public static final FileDicomTagInfo.VR AS
-
AE
public static final FileDicomTagInfo.VR AE
-
UT
public static final FileDicomTagInfo.VR UT
-
IS
public static final FileDicomTagInfo.VR IS
-
LO
public static final FileDicomTagInfo.VR LO
-
DS
public static final FileDicomTagInfo.VR DS
-
SH
public static final FileDicomTagInfo.VR SH
-
UC
public static final FileDicomTagInfo.VR UC
-
UR
public static final FileDicomTagInfo.VR UR
-
OB
public static final FileDicomTagInfo.VR OB
-
OW
public static final FileDicomTagInfo.VR OW
-
OF
public static final FileDicomTagInfo.VR OF
-
OD
public static final FileDicomTagInfo.VR OD
-
OL
public static final FileDicomTagInfo.VR OL
-
OV
public static final FileDicomTagInfo.VR OV
-
SQ
public static final FileDicomTagInfo.VR SQ
-
AT
public static final FileDicomTagInfo.VR AT
-
UN
public static final FileDicomTagInfo.VR UN
-
XX
public static final FileDicomTagInfo.VR XX
-
DA
public static final FileDicomTagInfo.VR DA
-
DT
public static final FileDicomTagInfo.VR DT
-
TM
public static final FileDicomTagInfo.VR TM
-
SS
public static final FileDicomTagInfo.VR SS
-
US
public static final FileDicomTagInfo.VR US
-
SL
public static final FileDicomTagInfo.VR SL
-
UL
public static final FileDicomTagInfo.VR UL
-
FL
public static final FileDicomTagInfo.VR FL
-
FD
public static final FileDicomTagInfo.VR FD
-
SV
public static final FileDicomTagInfo.VR SV
-
UV
public static final FileDicomTagInfo.VR UV
-
-
Field Detail
-
type
private DicomType type
-
-
Constructor Detail
-
VR
private VR(java.lang.String name, DicomType t)
-
-
Method Detail
-
values
public static FileDicomTagInfo.VR[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FileDicomTagInfo.VR c : FileDicomTagInfo.VR.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileDicomTagInfo.VR valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getType
public DicomType getType()
-
reservedBytes
public boolean reservedBytes()
Returns whether tags with the VR use two reserved bytes in its encoding
-
-