public enum BulkChangeType extends Enum<BulkChangeType>
Enum Constant and Description |
---|
ADD
File was added.
|
DELETE
File was deleted compared to the "since" commit ID.
|
MODIFY
File was modified compared to the "since" commit ID.
|
Modifier and Type | Method and Description |
---|---|
static BulkChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BulkChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkChangeType ADD
public static final BulkChangeType DELETE
public static final BulkChangeType MODIFY
public static BulkChangeType[] values()
for (BulkChangeType c : BulkChangeType.values()) System.out.println(c);
public static BulkChangeType 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 © 2019 Atlassian. All rights reserved.