public enum RepositoryType extends Enum<RepositoryType>
Java class for RepositoryType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RepositoryType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TFS"/>
<enumeration value="SVN"/>
<enumeration value="CVS"/>
<enumeration value="GIT"/>
<enumeration value="Perforce"/>
<enumeration value="NONE"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static RepositoryType |
fromValue(String v) |
String |
value() |
static RepositoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepositoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepositoryType TFS
public static final RepositoryType SVN
public static final RepositoryType CVS
public static final RepositoryType GIT
public static final RepositoryType PERFORCE
public static final RepositoryType NONE
public static RepositoryType[] values()
for (RepositoryType c : RepositoryType.values()) System.out.println(c);
public static RepositoryType 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 value()
public static RepositoryType fromValue(String v)
Copyright © 2020. All rights reserved.