| Enum Constant and Description |
|---|
SYNC_LR
Sync local to remote
|
SYNC_RL
Sync remote to local
|
WAIT_FOR_LR
Wait only
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.Set<SyncFlag> |
BOTH
Convenience flag set for sync'ing both directions (from local to remote and from remote to local).
|
static java.util.Set<SyncFlag> |
LR_ONLY
Convenience flag set for sync'ing only from local to remote.
|
static java.util.Set<SyncFlag> |
RL_ONLY
Convenience flag set for sync'ing only from remote to local.
|
static java.util.Set<SyncFlag> |
WAIT_FOR_LR_ONLY
Convenience flag set for sync'ing on the wait for pending requests.
|
| Modifier and Type | Method and Description |
|---|---|
static SyncFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyncFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncFlag SYNC_LR
public static final SyncFlag SYNC_RL
public static final SyncFlag WAIT_FOR_LR
public static final java.util.Set<SyncFlag> BOTH
public static final java.util.Set<SyncFlag> LR_ONLY
public static final java.util.Set<SyncFlag> RL_ONLY
public static final java.util.Set<SyncFlag> WAIT_FOR_LR_ONLY
public static SyncFlag[] values()
for (SyncFlag c : SyncFlag.values()) System.out.println(c);
public static SyncFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright (c) 2011 IBM Corporation and others. All Rights Reserved.