public enum GitCloneDepth extends Enum<GitCloneDepth>
Enum Constant and Description |
---|
Empty |
Five |
Full |
One |
TwentyFive |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static GitCloneDepth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitCloneDepth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitCloneDepth One
public static final GitCloneDepth Five
public static final GitCloneDepth TwentyFive
public static final GitCloneDepth Full
public static final GitCloneDepth Empty
public static GitCloneDepth[] values()
for (GitCloneDepth c : GitCloneDepth.values()) System.out.println(c);
public static GitCloneDepth 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 nullpublic String toString()
toString
in class Enum<GitCloneDepth>
Copyright © 2016–2023. All rights reserved.