public static enum RevisionUtils.Type extends java.lang.Enum<RevisionUtils.Type>
Enum Constant and Description |
---|
CVS
CVS.
|
SUBVERSION
Subversion.
|
UNKNOWN
unknown source control revision.
|
Modifier and Type | Method and Description |
---|---|
static RevisionUtils.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RevisionUtils.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevisionUtils.Type UNKNOWN
public static final RevisionUtils.Type CVS
public static final RevisionUtils.Type SUBVERSION
public static RevisionUtils.Type[] values()
for (RevisionUtils.Type c : RevisionUtils.Type.values()) System.out.println(c);
public static RevisionUtils.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null