public enum DifferenceType extends java.lang.Enum<DifferenceType>
enum
describes the type of a difference resulting
from a comparison between the 1st ReqIF file or archive and a
2nd ReqIF file or archiveModifier and Type | Method and Description |
---|---|
static DifferenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DifferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DifferenceType DELETED
public static final DifferenceType CREATED
public static final DifferenceType CHANGED
public static final DifferenceType MOVED
public static DifferenceType[] values()
for (DifferenceType c : DifferenceType.values()) System.out.println(c);
public static DifferenceType 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