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