public static enum DiffOp.Name extends java.lang.Enum<DiffOp.Name>
Enum Constant and Description |
---|
DELETE |
INSERT_BEFORE_NODE |
INSERT_BY_APPENDING |
Modifier and Type | Method and Description |
---|---|
static DiffOp.Name |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiffOp.Name[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DiffOp.Name DELETE
public static final DiffOp.Name INSERT_BY_APPENDING
public static final DiffOp.Name INSERT_BEFORE_NODE
public static DiffOp.Name[] values()
for (DiffOp.Name c : DiffOp.Name.values()) System.out.println(c);
public static DiffOp.Name 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