Enum Class SoDicomTag.VRs

java.lang.Object
java.lang.Enum<SoDicomTag.VRs>
com.openinventor.volumeviz.readers.dicom.SoDicomTag.VRs
All Implemented Interfaces:
IntegerValuedEnum, Serializable, Comparable<SoDicomTag.VRs>, Constable
Enclosing class:
SoDicomTag

public static enum SoDicomTag.VRs extends Enum<SoDicomTag.VRs> implements IntegerValuedEnum
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 Constants
    Enum Constant
    Description
    Application 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 Type
    Method
    Description
    int
    Returns the integer value of the enum constant.
    valueOf(int val)
    Returns the enum constant of this type with the specified integer value
    Returns the enum constant of this class with the specified name.
    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

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

  • Method Details

    • values

      public static SoDicomTag.VRs[] 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

      public static SoDicomTag.VRs valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • valueOf

      public static SoDicomTag.VRs valueOf(int val)
      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 interface IntegerValuedEnum
      Returns:
      the integer value of the enum constant.