com.xinapse.multisliceimage.Analyze
Enum NIFTIXForm

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

public enum NIFTIXForm
extends java.lang.Enum<NIFTIXForm>

This class represents the NIFTI qforms and sforms.


Enum Constant Summary
ALIGNED_ANAT
          Coordinates aligned to another file's, or to anatomical "truth".
MNI_152
          MNI 152 normalized coordinates.
SCANNER_ANAT
          Scanner-based anatomical coordinate system.
TALAIRACH
          Coordinates aligned to Talairach-Tournoux Atlas; (0,0,0)=AC, etc.
UNKNOWN
          Unknown coordinate system.
 
Method Summary
static void main(java.lang.String[] args)
          Run a self-test on the NIFTIXForm class.
 java.lang.String toString()
          Returns a string describing this NIFTIXForm.
static NIFTIXForm valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NIFTIXForm[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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 Detail

values

public static NIFTIXForm[] 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 (NIFTIXForm c : NIFTIXForm.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NIFTIXForm 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 name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Returns a string describing this NIFTIXForm.

Overrides:
toString in class java.lang.Enum<NIFTIXForm>
Returns:
a string describing this NIFTIXForm.

main

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

Parameters:
args - ignored.


Copyright 2006-2011 Xinapse Systems Limited. All Rights Reserved.