Enum LibraryFullStatusStatus
- java.lang.Object
-
- java.lang.Enum<LibraryFullStatusStatus>
-
- com.databricks.sdk.service.compute.LibraryFullStatusStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<LibraryFullStatusStatus>
@Generated public enum LibraryFullStatusStatus extends Enum<LibraryFullStatusStatus>
Status of installing the library on the cluster.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED
INSTALLED
INSTALLING
PENDING
RESOLVING
SKIPPED
UNINSTALL_ON_RESTART
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LibraryFullStatusStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static LibraryFullStatusStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILED
public static final LibraryFullStatusStatus FAILED
-
INSTALLED
public static final LibraryFullStatusStatus INSTALLED
-
INSTALLING
public static final LibraryFullStatusStatus INSTALLING
-
PENDING
public static final LibraryFullStatusStatus PENDING
-
RESOLVING
public static final LibraryFullStatusStatus RESOLVING
-
SKIPPED
public static final LibraryFullStatusStatus SKIPPED
-
UNINSTALL_ON_RESTART
public static final LibraryFullStatusStatus UNINSTALL_ON_RESTART
-
-
Method Detail
-
values
public static LibraryFullStatusStatus[] 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 (LibraryFullStatusStatus c : LibraryFullStatusStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LibraryFullStatusStatus valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-