Package org.apache.subversion.javahl
Enum ConflictDescriptor.Reason
java.lang.Object
java.lang.Enum<ConflictDescriptor.Reason>
org.apache.subversion.javahl.ConflictDescriptor.Reason
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ConflictDescriptor.Reason>
,java.lang.constant.Constable
- Enclosing class:
- ConflictDescriptor
Rich man's enum for
svn_wc_conflict_reason_t
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionObject is already added or schedule-add.Object is already schedule-delete.Local edits are already present.Object is unknown or missing.Object is moved away.Object is moved here.Another object is in the way.Object is already replaced.Object is unversioned. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ConflictDescriptor.Reason
valueOf
(java.lang.String name) Returns the enum constant of this type with the specified name.static ConflictDescriptor.Reason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
edited
Local edits are already present. -
obstructed
Another object is in the way. -
deleted
Object is already schedule-delete. -
missing
Object is unknown or missing. -
unversioned
Object is unversioned. -
added
Object is already added or schedule-add.- Since:
- 1.6
-
replaced
Object is already replaced.- Since:
- 1.7
-
moved_away
Object is moved away.- Since:
- 1.8
-
moved_here
Object is moved here.- Since:
- 1.8
-
-
Constructor Details
-
Reason
private Reason()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-