Enum Class NIFTIXForm

java.lang.Object
java.lang.Enum<NIFTIXForm>
com.xinapse.multisliceimage.Analyze.NIFTIXForm
All Implemented Interfaces:
Serializable, Comparable<NIFTIXForm>, Constable

public enum NIFTIXForm extends Enum<NIFTIXForm>
This class represents the NIFTI qforms and sforms.
  • Enum Constant Details

    • UNKNOWN

      public static final NIFTIXForm UNKNOWN
      Unknown coordinate system.
    • SCANNER_ANAT

      public static final NIFTIXForm SCANNER_ANAT
      Scanner-based anatomical coordinate system.
    • ALIGNED_ANAT

      public static final NIFTIXForm ALIGNED_ANAT
      Coordinates aligned to another file's, or to anatomical "truth".
    • TALAIRACH

      public static final NIFTIXForm TALAIRACH
      Coordinates aligned to Talairach-Tournoux Atlas; (0,0,0)=AC, etc.
    • MNI_152

      public static final NIFTIXForm MNI_152
      MNI 152 normalized coordinates.
  • Method Details

    • values

      public static NIFTIXForm[] 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 NIFTIXForm 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
    • toString

      public String toString()
      Returns a string describing this NIFTIXForm.
      Overrides:
      toString in class Enum<NIFTIXForm>
      Returns:
      a string describing this NIFTIXForm.
    • main

      public static void main(String[] args)
      Run a self-test on the NIFTIXForm class.
      Parameters:
      args - ignored.