com.xinapse.dicom
Enum PulseSequenceType

java.lang.Object
  extended by java.lang.Enum<PulseSequenceType>
      extended by com.xinapse.dicom.PulseSequenceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PulseSequenceType>

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

An enumeration of DICOM pulse sequence types.


Enum Constant Summary
EP
          Echo-planar pulse sequence type.
GR
          Gradient-echo pulse sequence type.
IR
          Inversion-recovery pulse sequence type.
RM
          Research mode pulse sequence type.
SE
          Spin-echo pulse sequence type.
 
Method Summary
static PulseSequenceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PulseSequenceType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SE

public static final PulseSequenceType SE
Spin-echo pulse sequence type.


IR

public static final PulseSequenceType IR
Inversion-recovery pulse sequence type.


GR

public static final PulseSequenceType GR
Gradient-echo pulse sequence type.


EP

public static final PulseSequenceType EP
Echo-planar pulse sequence type.


RM

public static final PulseSequenceType RM
Research mode pulse sequence type.

Method Detail

values

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

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

valueOf

public static PulseSequenceType 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


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