public enum CChangeType extends Enum<CChangeType>
| Enum Constant and 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 and Description |
|---|---|
static CChangeType |
valueOf(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(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. All rights reserved.