Enum Class SoDicomTag.VRs
- All Implemented Interfaces:
IntegerValuedEnum
,Serializable
,Comparable<SoDicomTag.VRs>
,Constable
- Enclosing class:
SoDicomTag
VRs (Visual Representations) defined in the DICOM standard.
ftp://dicom.nema.org/medical/DICOM/2013/output/chtml/part05/sect_6.2.html
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApplication Entity.Age String (Duration)Attribute Tag.Code String.Date String.Decimal String.Date Time String.Floating point double precision.Floating point single precision.Integer String.Long String (vector of 32bits signed integers)Long Text.Other Byte String (byte vector)Other Double String (vector of double)Other Float String (vector of float)Other Long String (vector of int)Other 64 bit very long.Other Word String (16 bits integers vector)Person Name.Short String.Signed 32 bits integer.Sequence.Signed 16 bits integer.Short Text.Signed 64 bit very long.Time String.Unlimited Characters.Unique Identifier.Unsigned 32 bits integer.Unknown.Universal Resource Identifier.Unsigned 16 bits integer.Unlimited Text.Unsigned 64 bit very long. -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Returns the integer value of the enum constant.static SoDicomTag.VRs
valueOf
(int val) Returns the enum constant of this type with the specified integer valuestatic SoDicomTag.VRs
Returns the enum constant of this class with the specified name.static SoDicomTag.VRs[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AE
Application Entity. -
AS
Age String (Duration) -
AT
Attribute Tag. -
CS
Code String. -
DA
Date String. -
DS
Decimal String. -
DT
Date Time String. -
FL
Floating point single precision. -
FD
Floating point double precision. -
IS
Integer String. -
LO
Long String (vector of 32bits signed integers) -
LT
Long Text. -
OB
Other Byte String (byte vector) -
OD
Other Double String (vector of double) -
OF
Other Float String (vector of float) -
OL
Other Long String (vector of int) -
OV
Other 64 bit very long. -
OW
Other Word String (16 bits integers vector) -
PN
Person Name. -
SH
Short String. -
SL
Signed 32 bits integer. -
SQ
Sequence. -
SS
Signed 16 bits integer. -
ST
Short Text. -
SV
Signed 64 bit very long. -
TM
Time String. -
UC
Unlimited Characters. -
UI
Unique Identifier. -
UL
Unsigned 32 bits integer. -
UN
Unknown. -
UR
Universal Resource Identifier. -
US
Unsigned 16 bits integer. -
UT
Unlimited Text. -
UV
Unsigned 64 bit very long.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-