Enum SystemSchemaInfoState
- java.lang.Object
-
- java.lang.Enum<SystemSchemaInfoState>
-
- com.databricks.sdk.service.catalog.SystemSchemaInfoState
-
- All Implemented Interfaces:
Serializable,Comparable<SystemSchemaInfoState>
@Generated public enum SystemSchemaInfoState extends Enum<SystemSchemaInfoState>
The current state of enablement for the system schema. An empty string means the system schema is available and ready for opt-in.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLEDISABLE_INITIALIZEDENABLE_COMPLETEDENABLE_INITIALIZEDUNAVAILABLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SystemSchemaInfoStatevalueOf(String name)Returns the enum constant of this type with the specified name.static SystemSchemaInfoState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE
public static final SystemSchemaInfoState AVAILABLE
-
DISABLE_INITIALIZED
public static final SystemSchemaInfoState DISABLE_INITIALIZED
-
ENABLE_COMPLETED
public static final SystemSchemaInfoState ENABLE_COMPLETED
-
ENABLE_INITIALIZED
public static final SystemSchemaInfoState ENABLE_INITIALIZED
-
UNAVAILABLE
public static final SystemSchemaInfoState UNAVAILABLE
-
-
Method Detail
-
values
public static SystemSchemaInfoState[] 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 (SystemSchemaInfoState c : SystemSchemaInfoState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemSchemaInfoState 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
-
-