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