Project: stp

com.ibm.rational.wvcm.stp.cc
Enum CcFile.LoadState

Object
  extended by Enum<CcFile.LoadState>
      extended by CcFile.LoadState
All Implemented Interfaces:
com.ibm.rational.wvcm.stpex.StpExEnumeration, Serializable, Comparable<CcFile.LoadState>
Enclosing interface:
CcFile

public static enum CcFile.LoadState
extends Enum<CcFile.LoadState>
implements com.ibm.rational.wvcm.stpex.StpExEnumeration

Values for file or directory load state


Enum Constant Summary
LOADED
          This file or directory is loaded in its file area.
NOT_LOADED
          This file or directory is not loaded in its file area.
PARTIALLY_LOADED
          This directory is partially loaded in its file area, i.e., some but not all of its children are loaded.
 
Method Summary
static CcFile.LoadState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CcFile.LoadState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LOADED

public static final CcFile.LoadState LOADED
This file or directory is loaded in its file area.


NOT_LOADED

public static final CcFile.LoadState NOT_LOADED
This file or directory is not loaded in its file area.


PARTIALLY_LOADED

public static final CcFile.LoadState PARTIALLY_LOADED
This directory is partially loaded in its file area, i.e., some but not all of its children are loaded.

Method Detail

valueOf

public static CcFile.LoadState 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

values

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

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

Generated Fri 15-Nov-2013 12:48 AM

Copyright © IBM 2013. All rights reserved.