public static enum CcVersion.CcCheckoutFlag extends Enum<CcVersion.CcCheckoutFlag>
doCcCheckout
method.Enum Constant and Description |
---|
FALLBACK_TO_UNRESERVED
Fall back to unreserved if a reservation can not be obtained.
|
NON_MASTERED_OK
Indicates whether to checkout this file even if the
relevant branch is mastered by another replica.
|
PRESERVE_MODIFICATION_TIME
After a file is 'checkedout', set the file's "last modified"
time to be the time when the version was first created.
|
RESERVED
Indicates whether to checkout this file reserved.
|
Modifier and Type | Method and Description |
---|---|
static CcVersion.CcCheckoutFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcVersion.CcCheckoutFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcVersion.CcCheckoutFlag FALLBACK_TO_UNRESERVED
public static final CcVersion.CcCheckoutFlag NON_MASTERED_OK
RESERVED
flag must NOT be set with this flag.
If the file is mastered by this replica, setting this flag has no effect.
public static final CcVersion.CcCheckoutFlag PRESERVE_MODIFICATION_TIME
This only applies to dynamic views.
public static final CcVersion.CcCheckoutFlag RESERVED
public static CcVersion.CcCheckoutFlag 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 CcVersion.CcCheckoutFlag[] values()
for (CcVersion.CcCheckoutFlag c : CcVersion.CcCheckoutFlag.values()) System.out.println(c);
Copyright © IBM 2018. All rights reserved.