Enum SvnWcDbRevert.RevertInfo
- java.lang.Object
-
- java.lang.Enum<SvnWcDbRevert.RevertInfo>
-
- org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbRevert.RevertInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SvnWcDbRevert.RevertInfo>
- Enclosing class:
- SvnWcDbRevert
public static enum SvnWcDbRevert.RevertInfo extends java.lang.Enum<SvnWcDbRevert.RevertInfo>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description conflictNew
conflictOld
conflictWorking
copiedHere
kind
markerFiles
propReject
reverted
-
Constructor Summary
Constructors Modifier Constructor Description private
RevertInfo()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SvnWcDbRevert.RevertInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SvnWcDbRevert.RevertInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
reverted
public static final SvnWcDbRevert.RevertInfo reverted
-
conflictOld
public static final SvnWcDbRevert.RevertInfo conflictOld
-
conflictNew
public static final SvnWcDbRevert.RevertInfo conflictNew
-
conflictWorking
public static final SvnWcDbRevert.RevertInfo conflictWorking
-
propReject
public static final SvnWcDbRevert.RevertInfo propReject
-
copiedHere
public static final SvnWcDbRevert.RevertInfo copiedHere
-
kind
public static final SvnWcDbRevert.RevertInfo kind
-
markerFiles
public static final SvnWcDbRevert.RevertInfo markerFiles
-
-
Method Detail
-
values
public static SvnWcDbRevert.RevertInfo[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SvnWcDbRevert.RevertInfo c : SvnWcDbRevert.RevertInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SvnWcDbRevert.RevertInfo valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-