public enum VersioningState extends Enum<VersioningState>
Enum Constant and Description |
---|
CHECKEDOUT |
MAJOR |
MINOR |
NONE |
Modifier and Type | Method and Description |
---|---|
static VersioningState |
fromValue(String v) |
String |
value() |
static VersioningState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersioningState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersioningState NONE
public static final VersioningState MAJOR
public static final VersioningState MINOR
public static final VersioningState CHECKEDOUT
public static VersioningState[] values()
for (VersioningState c : VersioningState.values()) System.out.println(c);
public static VersioningState 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 VersioningState fromValue(String v)
Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.