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