Enum SvnWcDbConflicts.PropertyConflictInfo
- java.lang.Object
-
- java.lang.Enum<SvnWcDbConflicts.PropertyConflictInfo>
-
- org.tmatesoft.svn.core.internal.wc17.db.SvnWcDbConflicts.PropertyConflictInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SvnWcDbConflicts.PropertyConflictInfo>
- Enclosing class:
- SvnWcDbConflicts
public static enum SvnWcDbConflicts.PropertyConflictInfo extends java.lang.Enum<SvnWcDbConflicts.PropertyConflictInfo>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description conflictedPropNames
markerAbspath
mineProps
theirOldProps
theirProps
-
Constructor Summary
Constructors Modifier Constructor Description private
PropertyConflictInfo()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SvnWcDbConflicts.PropertyConflictInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SvnWcDbConflicts.PropertyConflictInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
markerAbspath
public static final SvnWcDbConflicts.PropertyConflictInfo markerAbspath
-
mineProps
public static final SvnWcDbConflicts.PropertyConflictInfo mineProps
-
theirOldProps
public static final SvnWcDbConflicts.PropertyConflictInfo theirOldProps
-
theirProps
public static final SvnWcDbConflicts.PropertyConflictInfo theirProps
-
conflictedPropNames
public static final SvnWcDbConflicts.PropertyConflictInfo conflictedPropNames
-
-
Method Detail
-
values
public static SvnWcDbConflicts.PropertyConflictInfo[] 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 (SvnWcDbConflicts.PropertyConflictInfo c : SvnWcDbConflicts.PropertyConflictInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SvnWcDbConflicts.PropertyConflictInfo 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
-
-