public enum GitRefType extends Enum<GitRefType>
| Modifier and Type | Method and Description |
|---|---|
static GitRefType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitRefType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitRefType BRANCH
public static final GitRefType TAG
public static final GitRefType COMMIT
public static GitRefType[] values()
for (GitRefType c : GitRefType.values()) System.out.println(c);
public static GitRefType 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 © 2021. All rights reserved.