public static enum Patch.ChangeType extends Enum<Patch.ChangeType>
| Modifier and Type | Method and Description |
|---|---|
static Patch.ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Patch.ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Patch.ChangeType ADD
public static final Patch.ChangeType MODIFY
public static final Patch.ChangeType DELETE
public static final Patch.ChangeType RENAME
public static final Patch.ChangeType COPY
public static Patch.ChangeType[] values()
for (Patch.ChangeType c : Patch.ChangeType.values()) System.out.println(c);
public static Patch.ChangeType 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. All rights reserved.