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