org.aludratest.hpalm.entity
Enum RunStepStatus

java.lang.Object
  extended by java.lang.Enum<RunStepStatus>
      extended by org.aludratest.hpalm.entity.RunStepStatus
All Implemented Interfaces:
Serializable, Comparable<RunStepStatus>

public enum RunStepStatus
extends Enum<RunStepStatus>


Enum Constant Summary
BLOCKED
           
FAILED
           
N_A
           
NO_RUN
           
NOT_COMPLETED
           
PASSED
           
 
Method Summary
 String displayName()
           
 String logicalName()
           
static RunStepStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RunStepStatus[] 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

BLOCKED

public static final RunStepStatus BLOCKED

FAILED

public static final RunStepStatus FAILED

N_A

public static final RunStepStatus N_A

NO_RUN

public static final RunStepStatus NO_RUN

NOT_COMPLETED

public static final RunStepStatus NOT_COMPLETED

PASSED

public static final RunStepStatus PASSED
Method Detail

values

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

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

valueOf

public static RunStepStatus valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

displayName

public String displayName()

logicalName

public String logicalName()


Copyright © 2015 aludratest.org. All rights reserved.