Serializable, Comparable<ApiChangeLevel>public enum ApiChangeLevel extends Enum<ApiChangeLevel>
| Enum Constant | Description |
|---|---|
BREAKING_CHANGES |
|
NO_CHANGE |
|
NON_BREAKING_CHANGES |
| Modifier and Type | Method | Description |
|---|---|---|
static ApiChangeLevel |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ApiChangeLevel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiChangeLevel NO_CHANGE
public static final ApiChangeLevel NON_BREAKING_CHANGES
public static final ApiChangeLevel BREAKING_CHANGES
public static ApiChangeLevel[] values()
for (ApiChangeLevel c : ApiChangeLevel.values()) System.out.println(c);
public static ApiChangeLevel 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 © 2014-2018 Lukas Krejci. All Rights Reserved.