public static enum DicomElement.VR extends java.lang.Enum<DicomElement.VR>
Enum Constant and Description |
---|
AE |
AS |
AT |
CS |
DA |
DL |
DS |
DT |
FD |
FL |
IS |
LO |
LT |
OB |
OF |
OW |
OX |
PN |
SH |
SL |
SQ |
SS |
ST |
TM |
UI |
UL |
UN |
US |
UT |
Modifier and Type | Method and Description |
---|---|
static DicomElement.VR |
get(char c0,
char c1)
Find VR element based on 2-character representation
|
static DicomElement.VR |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DicomElement.VR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DicomElement.VR AE
public static final DicomElement.VR AS
public static final DicomElement.VR AT
public static final DicomElement.VR CS
public static final DicomElement.VR DA
public static final DicomElement.VR DS
public static final DicomElement.VR DT
public static final DicomElement.VR DL
public static final DicomElement.VR FL
public static final DicomElement.VR FD
public static final DicomElement.VR IS
public static final DicomElement.VR LO
public static final DicomElement.VR LT
public static final DicomElement.VR OB
public static final DicomElement.VR OF
public static final DicomElement.VR OW
public static final DicomElement.VR PN
public static final DicomElement.VR SH
public static final DicomElement.VR SL
public static final DicomElement.VR SQ
public static final DicomElement.VR SS
public static final DicomElement.VR ST
public static final DicomElement.VR TM
public static final DicomElement.VR UI
public static final DicomElement.VR UL
public static final DicomElement.VR UN
public static final DicomElement.VR US
public static final DicomElement.VR UT
public static final DicomElement.VR OX
public static DicomElement.VR[] values()
for (DicomElement.VR c : DicomElement.VR.values()) System.out.println(c);
public static DicomElement.VR valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DicomElement.VR get(char c0, char c1)