@PublicApi public enum DiffLevel extends java.lang.Enum<DiffLevel>
| Enum Constant and Description | 
|---|
BREAKING
The new API has made a breaking change 
 | 
DANGEROUS
The new API has made a dangerous (but non breaking) change 
 | 
INFO
A simple info object coming out of the difference engine 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DiffLevel | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DiffLevel[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DiffLevel INFO
public static final DiffLevel BREAKING
public static final DiffLevel DANGEROUS
public static DiffLevel[] values()
for (DiffLevel c : DiffLevel.values()) System.out.println(c);
public static DiffLevel 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