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