Project: stp

com.ibm.rational.wvcm.stp.cc
Enum CcStorageLocation.StorageType

Object
  extended by Enum<CcStorageLocation.StorageType>
      extended by CcStorageLocation.StorageType
All Implemented Interfaces:
Serializable, Comparable<CcStorageLocation.StorageType>
Enclosing interface:
CcStorageLocation

public static enum CcStorageLocation.StorageType
extends Enum<CcStorageLocation.StorageType>

Type of the storage location


Enum Constant Summary
VIEW
          This is a view storage location.
VOB
          This is a VOB storage location.
 
Method Summary
static CcStorageLocation.StorageType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CcStorageLocation.StorageType[] 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

VIEW

public static final CcStorageLocation.StorageType VIEW
This is a view storage location.


VOB

public static final CcStorageLocation.StorageType VOB
This is a VOB storage location.

Method Detail

valueOf

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

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

Generated Thu 20-Feb-2014 09:09 PM

Copyright © IBM 2014. All rights reserved.