@PublicApi public enum DiffLevel extends 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(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(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 © 2019. All rights reserved.