public enum VerboseSuperprojectUpdate extends Enum<VerboseSuperprojectUpdate>
Enum Constant and Description |
---|
FALSE
Do not include any commit messages for the gitlink update.
|
SUBJECT_ONLY
Only include the commit subjects.
|
TRUE
Include full commit messages.
|
Modifier and Type | Method and Description |
---|---|
static VerboseSuperprojectUpdate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerboseSuperprojectUpdate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerboseSuperprojectUpdate FALSE
public static final VerboseSuperprojectUpdate SUBJECT_ONLY
public static final VerboseSuperprojectUpdate TRUE
public static VerboseSuperprojectUpdate[] values()
for (VerboseSuperprojectUpdate c : VerboseSuperprojectUpdate.values()) System.out.println(c);
public static VerboseSuperprojectUpdate 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