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