Package ro.sync.diff.merge.api
Enum MergedFileState.MergeStatus
- java.lang.Object
-
- java.lang.Enum<MergedFileState.MergeStatus>
-
- ro.sync.diff.merge.api.MergedFileState.MergeStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MergedFileState.MergeStatus>
- Enclosing interface:
- MergedFileState
@API(type=NOT_EXTENDABLE, src=PUBLIC) public static enum MergedFileState.MergeStatus extends java.lang.Enum<MergedFileState.MergeStatus>
The merge state
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDED
Status that specifies that the current file is added.DELETED
Status that specifies that the current file is deleted.MODIFIED
Status that specifies that the current file is modified.UNMODIFIED
Status that specifies that the current file is unmodified.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MergedFileState.MergeStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MergedFileState.MergeStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNMODIFIED
public static final MergedFileState.MergeStatus UNMODIFIED
Status that specifies that the current file is unmodified.
-
MODIFIED
public static final MergedFileState.MergeStatus MODIFIED
Status that specifies that the current file is modified.
-
ADDED
public static final MergedFileState.MergeStatus ADDED
Status that specifies that the current file is added.
-
DELETED
public static final MergedFileState.MergeStatus DELETED
Status that specifies that the current file is deleted.
-
-
Method Detail
-
values
public static MergedFileState.MergeStatus[] 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 (MergedFileState.MergeStatus c : MergedFileState.MergeStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MergedFileState.MergeStatus 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
-
-