Package org.projectnessie.gc.contents
Enum LiveContentSet.Status
- java.lang.Object
-
- java.lang.Enum<LiveContentSet.Status>
-
- org.projectnessie.gc.contents.LiveContentSet.Status
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LiveContentSet.Status>
- Enclosing class:
- LiveContentSet
public static enum LiveContentSet.Status extends java.lang.Enum<LiveContentSet.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPIRY_FAILEDEXPIRY_IN_PROGRESSEXPIRY_SUCCESSIDENTIFY_FAILEDIDENTIFY_IN_PROGRESSIDENTIFY_SUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LiveContentSet.StatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LiveContentSet.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTIFY_IN_PROGRESS
public static final LiveContentSet.Status IDENTIFY_IN_PROGRESS
-
IDENTIFY_SUCCESS
public static final LiveContentSet.Status IDENTIFY_SUCCESS
-
IDENTIFY_FAILED
public static final LiveContentSet.Status IDENTIFY_FAILED
-
EXPIRY_IN_PROGRESS
public static final LiveContentSet.Status EXPIRY_IN_PROGRESS
-
EXPIRY_SUCCESS
public static final LiveContentSet.Status EXPIRY_SUCCESS
-
EXPIRY_FAILED
public static final LiveContentSet.Status EXPIRY_FAILED
-
-
Method Detail
-
values
public static LiveContentSet.Status[] 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 (LiveContentSet.Status c : LiveContentSet.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LiveContentSet.Status 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
-
-