public enum CChangeType extends java.lang.Enum<CChangeType>
| Enum Constant | Description |
|---|---|
CHANGE_TYPE_CODE_CHANGE |
The type of backwards-incompatible code changes.
|
CHANGE_TYPE_CODE_FIX |
The type of backwards-compatible bug fixes to code.
|
CHANGE_TYPE_CODE_NEW |
The type of backwards-compatible new code.
|
| Modifier and Type | Method | Description |
|---|---|---|
static CChangeType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CChangeType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CChangeType CHANGE_TYPE_CODE_CHANGE
public static final CChangeType CHANGE_TYPE_CODE_FIX
public static final CChangeType CHANGE_TYPE_CODE_NEW
public static CChangeType[] values()
for (CChangeType c : CChangeType.values()) System.out.println(c);
public static CChangeType 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 nullCopyright © 2017 <code@io7m.com> http://io7m.com