Package com.adobe.cq.wcm.launches.cf
Enum DiffStatus
- java.lang.Object
-
- java.lang.Enum<DiffStatus>
-
- com.adobe.cq.wcm.launches.cf.DiffStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DiffStatus>
public enum DiffStatus extends java.lang.Enum<DiffStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFLICTEXISTS_ONLY_IN_LAUNCHEXISTS_ONLY_IN_SOURCEUP_TO_DATEUPDATED_IN_LAUNCHUPDATED_IN_SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DiffStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DiffStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATED_IN_SOURCE
public static final DiffStatus UPDATED_IN_SOURCE
-
UPDATED_IN_LAUNCH
public static final DiffStatus UPDATED_IN_LAUNCH
-
CONFLICT
public static final DiffStatus CONFLICT
-
UP_TO_DATE
public static final DiffStatus UP_TO_DATE
-
EXISTS_ONLY_IN_LAUNCH
public static final DiffStatus EXISTS_ONLY_IN_LAUNCH
-
EXISTS_ONLY_IN_SOURCE
public static final DiffStatus EXISTS_ONLY_IN_SOURCE
-
-
Method Detail
-
values
public static DiffStatus[] 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 (DiffStatus c : DiffStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiffStatus 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
-
-