Project: stp

com.ibm.rational.wvcm.stp.cc
Enum CcVersion.CcMergeFlag

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

public static enum CcVersion.CcMergeFlag
extends Enum<CcVersion.CcMergeFlag>

Flags for the doMerge method


Enum Constant Summary
NO_ARROWS
          Requests to only merge the data sent.
NO_DATA
          Informs the merge that there is no data being sent.
REPLACE
          If a merge arrow already exists, this will delete and replace that merge arrow.
 
Method Summary
static CcVersion.CcMergeFlag valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CcVersion.CcMergeFlag[] 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

NO_ARROWS

public static final CcVersion.CcMergeFlag NO_ARROWS
Requests to only merge the data sent. Do not draw the merge arrow. Can not be specified with NO_DATA flag.


NO_DATA

public static final CcVersion.CcMergeFlag NO_DATA
Informs the merge that there is no data being sent. Just draw the merge arrow. Can not be specified with NO_ARROWS flag.


REPLACE

public static final CcVersion.CcMergeFlag REPLACE
If a merge arrow already exists, this will delete and replace that merge arrow. Does nothing when specified with the NO_ARROWS flag.

Method Detail

valueOf

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

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

Generated Sat 22-Feb-2014 01:07 AM

Copyright © IBM 2014. All rights reserved.