public static enum RepositoryItem.Syncable extends Enum<RepositoryItem.Syncable>
Enum Constant and Description |
---|
ALLOW
Allow the user to synchronize the item (and child items, if they exist) to the user's workspace.
|
DENY
Prevents the user from synchronizing the item (and child items, if they exist) to the user's workspace.
|
DENY_ALL
Prevents the user from synchronizing the item (and child items, if they exist) to their workspace.
|
WARN
Enables the user interface 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, the user can directly synchronize the child items (unless the child items are set to DENY). In other words, this state does not cascade to child items.
public static final RepositoryItem.Syncable DENY_ALL
Although this state prevents synchronizing from the specific item, if the node is a container, the user can directly synchronize the child items (unless the child items are set to DENY). In other words, this state does not cascade to child items.
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 null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>