public static enum CcFile.CcVersionControlFlag extends Enum<CcFile.CcVersionControlFlag> implements com.ibm.rational.wvcm.stpex.StpExEnumeration
doCcVersionControl
method.Enum Constant and Description |
---|
CHECKIN
Indicates whether to checkin this file after it is added to version control.
|
MAKE_PATH
Automatically checkout the version controlled parent directory and
check back in after new file has been added to version control.
|
MASTER_LOCALLY
Assigns mastership of the main branch of the newly version controlled
file to the VOB replica in which you execute operation.
|
NO_CHECKOUT
Do not checkout the file after adding to version control.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CcFile.CcVersionControlFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcFile.CcVersionControlFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcFile.CcVersionControlFlag CHECKIN
This flag is mutually exclusive with NO_CHECKOUT
.
public static final CcFile.CcVersionControlFlag MAKE_PATH
This flag is mutually exclusive with MASTER_LOCALLY
.
public static final CcFile.CcVersionControlFlag MASTER_LOCALLY
This flag is mutually exclusive with MAKE_PATH
.
public static final CcFile.CcVersionControlFlag NO_CHECKOUT
This flag is mutually exclusive with CHECKIN
.
public String toString()
toString
in class Enum<CcFile.CcVersionControlFlag>
public static CcFile.CcVersionControlFlag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static CcFile.CcVersionControlFlag[] values()
for (CcFile.CcVersionControlFlag c : CcFile.CcVersionControlFlag.values()) System.out.println(c);
Copyright © IBM 2017. All rights reserved.