public static enum Synchronizable.Syncable extends Enum<Synchronizable.Syncable>
Enum Constant and Description |
---|
ALLOW
Allow end-users to synchronize this node (and any child nodes) to their workspace.
|
DENY
Prevent end-users from synchronizing this node (and any child nodes) to their workspace.
|
DENY_ALL
Prevent end-users from synchronizing this node (and any child nodes) to their workspace.
|
WARN
Indication that user-interface may choose to warn the user they are about to synchronize a large node (or
subtree of nodes) to their workspace.
|
Modifier and Type | Method and Description |
---|---|
static Synchronizable.Syncable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Synchronizable.Syncable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Synchronizable.Syncable ALLOW
public static final Synchronizable.Syncable WARN
public static final Synchronizable.Syncable DENY
Although this state prevents synchronizing from this specific node, if the node is a container, end-users can still synchronize directly from the child nodes (unless they are set to DENY as well). In other words, this state does not cascade to direct descendants.
public static final Synchronizable.Syncable DENY_ALL
Although this state prevents synchronizing from this specific node, if the node is a container, end-users can still synchronize directly from the child nodes (unless they are set to DENY as well). In other words, this state does not cascade to direct descendants.
public static Synchronizable.Syncable[] values()
for (Synchronizable.Syncable c : Synchronizable.Syncable.values()) System.out.println(c);
public static Synchronizable.Syncable 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 nullCopyright (c) 2017, SAS Institute Inc., Cary, NC, USA