public static enum TriggerConfigurator.RepositorySelectionMode extends Enum<TriggerConfigurator.RepositorySelectionMode>
| Enum Constant and Description |
|---|
ALL
All repositories are relevant.
|
NONE
Trigger is not related to repositories.
|
SELECTED
Let user select relevant repositories.
|
| Modifier and Type | Method and Description |
|---|---|
static TriggerConfigurator.RepositorySelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerConfigurator.RepositorySelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerConfigurator.RepositorySelectionMode NONE
TriggerDefinition.getTriggeringRepositories() will be nullpublic static final TriggerConfigurator.RepositorySelectionMode SELECTED
TriggerDefinition.getTriggeringRepositories() will return appropriate data.public static final TriggerConfigurator.RepositorySelectionMode ALL
TriggerDefinition.getTriggeringRepositories() will return appropriate data.public static TriggerConfigurator.RepositorySelectionMode[] values()
for (TriggerConfigurator.RepositorySelectionMode c : TriggerConfigurator.RepositorySelectionMode.values()) System.out.println(c);
public static TriggerConfigurator.RepositorySelectionMode 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 © 2020 Atlassian Software Systems Pty Ltd. All rights reserved.