public enum RepositorySynchronizationType extends Enum<RepositorySynchronizationType>
Enum Constant and Description |
---|
INCREMENTAL
Refs to be updated are computed by the orchestrator and relevant
update-ref instructions
are passed to each member of the mirror farm. |
SNAPSHOT
All refs on the remote are fetched by the orchestrator and passed to each member of the mirror farm.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static RepositorySynchronizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepositorySynchronizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepositorySynchronizationType INCREMENTAL
update-ref
instructions
are passed to each member of the mirror farm. Each member then performs the instructions that were passed to it.public static final RepositorySynchronizationType SNAPSHOT
public static RepositorySynchronizationType[] values()
for (RepositorySynchronizationType c : RepositorySynchronizationType.values()) System.out.println(c);
public static RepositorySynchronizationType 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 nullpublic String toString()
toString
in class Enum<RepositorySynchronizationType>
Copyright © 2019 Atlassian. All rights reserved.