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