public enum DiffDetailType extends Enum<DiffDetailType>
DiffDetail.
Created: 21.11.2013 11:33:30| Enum Constant and Description |
|---|
DIFFERENT
An expected element was found but differs in some way.
|
MISSING
An expected element was not found.
|
MOVED
An expected element was found at an unexpected place.
|
UNEXPECTED
An element was which was not expected at this place.
|
| Modifier and Type | Method and Description |
|---|---|
static DiffDetailType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiffDetailType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiffDetailType DIFFERENT
public static final DiffDetailType UNEXPECTED
public static final DiffDetailType MISSING
public static final DiffDetailType MOVED
public static DiffDetailType[] values()
for (DiffDetailType c : DiffDetailType.values()) System.out.println(c);
public static DiffDetailType 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 © 2006–2016 Volker Bergmann. All rights reserved.