public enum BranchTemplateSyncType extends java.lang.Enum<BranchTemplateSyncType>
| Enum Constant and Description |
|---|
CREATED
The branch was created
|
DELETED
The branch was deleted
|
DISABLED
The branch was disabled
|
EXISTING_CLASSIC
The branch cannot be instanciated because it is a normal branch.
|
EXISTING_DEFINITION
The branch cannot be instanciated because it is a definition.
|
EXISTING_INSTANCE_FROM_OTHER
The branch cannot be instanciated because it is an instance from another definition.
|
IGNORED
The branch was not taken into account.
|
UPDATED
The branch was updated
|
| Modifier and Type | Method and Description |
|---|---|
static BranchTemplateSyncType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BranchTemplateSyncType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BranchTemplateSyncType CREATED
public static final BranchTemplateSyncType UPDATED
public static final BranchTemplateSyncType DELETED
public static final BranchTemplateSyncType IGNORED
public static final BranchTemplateSyncType EXISTING_CLASSIC
public static final BranchTemplateSyncType EXISTING_DEFINITION
public static final BranchTemplateSyncType EXISTING_INSTANCE_FROM_OTHER
public static final BranchTemplateSyncType DISABLED
public static BranchTemplateSyncType[] values()
for (BranchTemplateSyncType c : BranchTemplateSyncType.values()) System.out.println(c);
public static BranchTemplateSyncType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null