edu.ucla.stat.SOCR.util
Enum IntervalType

java.lang.Object
  extended by java.lang.Enum<IntervalType>
      extended by edu.ucla.stat.SOCR.util.IntervalType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IntervalType>

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

Created by IntelliJ IDEA. User: rahul Date: Mar 16, 2009 Time: 10:02:54 PM To change this template use File | Settings | File Templates.


Enum Constant Summary
proportion_approx
           
proportion_exact
           
sigma
           
xbar_sigmaKnown
           
xbar_sigmaUnknown
           
 
Method Summary
abstract  java.lang.String toString()
           
static IntervalType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IntervalType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

xbar_sigmaKnown

public static final IntervalType xbar_sigmaKnown

xbar_sigmaUnknown

public static final IntervalType xbar_sigmaUnknown

proportion_exact

public static final IntervalType proportion_exact

proportion_approx

public static final IntervalType proportion_approx

sigma

public static final IntervalType sigma
Method Detail

values

public static final IntervalType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(IntervalType c : IntervalType.values())
        System.out.println(c);

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

valueOf

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

toString

public abstract java.lang.String toString()
Overrides:
toString in class java.lang.Enum<IntervalType>