Enum SecurableType
- java.lang.Object
-
- java.lang.Enum<SecurableType>
-
- com.databricks.sdk.service.catalog.SecurableType
-
- All Implemented Interfaces:
Serializable,Comparable<SecurableType>
@Generated public enum SecurableType extends Enum<SecurableType>
The type of Unity Catalog securable
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SecurableTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SecurableType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CATALOG
public static final SecurableType CATALOG
-
EXTERNAL_LOCATION
public static final SecurableType EXTERNAL_LOCATION
-
FUNCTION
public static final SecurableType FUNCTION
-
METASTORE
public static final SecurableType METASTORE
-
PIPELINE
public static final SecurableType PIPELINE
-
PROVIDER
public static final SecurableType PROVIDER
-
RECIPIENT
public static final SecurableType RECIPIENT
-
SCHEMA
public static final SecurableType SCHEMA
-
SHARE
public static final SecurableType SHARE
-
STORAGE_CREDENTIAL
public static final SecurableType STORAGE_CREDENTIAL
-
TABLE
public static final SecurableType TABLE
-
-
Method Detail
-
values
public static SecurableType[] 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 (SecurableType c : SecurableType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurableType 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
-
-