Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

oracle.javatools.ui.checklist
Enum Step.StepStatus

java.lang.Object
  extended by java.lang.Enum<Step.StepStatus>
      extended by oracle.javatools.ui.checklist.Step.StepStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Step.StepStatus>
Enclosing class:
Step

public static enum Step.StepStatus
extends java.lang.Enum<Step.StepStatus>

List of different step status.


Enum Constant Summary
DONE
          Step is completed.
IN_PROCESS
          Step is in progress.
NOT_STARTED
          When the step is not started.
WILL_NOT_DO
          User will not do this step.
 
Method Summary
static Step.StepStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Step.StepStatus[] 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

NOT_STARTED

public static final Step.StepStatus NOT_STARTED
When the step is not started. This is the initial default status for a step.


IN_PROCESS

public static final Step.StepStatus IN_PROCESS
Step is in progress.


DONE

public static final Step.StepStatus DONE
Step is completed.


WILL_NOT_DO

public static final Step.StepStatus WILL_NOT_DO
User will not do this step. Also indicates skipping of the step.

Method Detail

values

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

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

valueOf

public static Step.StepStatus 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

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Copyright © 1997, 2011, Oracle. All rights reserved.