br.eti.kinoshita.testlinkjavaapi.constants
Enum TestCaseStatus

Package class diagram package TestCaseStatus
java.lang.Object
  extended by java.lang.Enum<TestCaseStatus>
      extended by br.eti.kinoshita.testlinkjavaapi.constants.TestCaseStatus
All Implemented Interfaces:
Serializable, Comparable<TestCaseStatus>

public enum TestCaseStatus
extends Enum<TestCaseStatus>

Since:
1.9.3-4
Author:
Mario Fuentes - http://www.rhiscom.com

Enum Constant Summary
DRAFT
           
FINAL
           
FUTURE
           
OBSOLETE
           
READY_FOR_REVIEW
           
REVIEW_IN_PROGRESS
           
REWORK
           
 
Method Summary
 Integer getValue()
           
 String toString()
           
static TestCaseStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TestCaseStatus[] 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

FINAL

public static final TestCaseStatus FINAL

FUTURE

public static final TestCaseStatus FUTURE

OBSOLETE

public static final TestCaseStatus OBSOLETE

REWORK

public static final TestCaseStatus REWORK

REVIEW_IN_PROGRESS

public static final TestCaseStatus REVIEW_IN_PROGRESS

READY_FOR_REVIEW

public static final TestCaseStatus READY_FOR_REVIEW

DRAFT

public static final TestCaseStatus DRAFT
Method Detail

values

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

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

valueOf

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

getValue

public Integer getValue()

toString

public String toString()
Overrides:
toString in class Enum<TestCaseStatus>


Copyright © 2010-2011 the testlink-java-api team-2012. All Rights Reserved.