public enum CheckInKind extends Enum<CheckInKind>
Item
.CheckInCommand
Enum Constant and Description |
---|
MAJOR
The Major Revision Id will be incremented
|
MINOR
The Minor Revision Id will be incremented
|
Modifier and Type | Method and Description |
---|---|
static CheckInKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckInKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckInKind MAJOR
public static final CheckInKind MINOR
public static CheckInKind[] values()
for (CheckInKind c : CheckInKind.values()) System.out.println(c);
public static CheckInKind 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 null