public static enum SynchronizationInfo.CheckoutStatus extends Enum<SynchronizationInfo.CheckoutStatus>
checkin
status of the file. If the file exists in the repository, it
can be checked out or not checked out. If it exists in the workspace, only then can it be marked for addition in
the repository.Enum Constant and Description |
---|
CHECKED_OUT |
MARKED_FOR_ADD |
NOT_CHECKED_OUT |
Modifier and Type | Method and Description |
---|---|
static SynchronizationInfo.CheckoutStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronizationInfo.CheckoutStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronizationInfo.CheckoutStatus NOT_CHECKED_OUT
public static final SynchronizationInfo.CheckoutStatus CHECKED_OUT
public static final SynchronizationInfo.CheckoutStatus MARKED_FOR_ADD
public static SynchronizationInfo.CheckoutStatus[] values()
for (SynchronizationInfo.CheckoutStatus c : SynchronizationInfo.CheckoutStatus.values()) System.out.println(c);
public static SynchronizationInfo.CheckoutStatus 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 null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>