@Generated public enum CatalogType extends Enum<CatalogType>
| Enum Constant and Description |
|---|
DELTASHARING_CATALOG |
MANAGED_CATALOG |
SYSTEM_CATALOG |
| Modifier and Type | Method and Description |
|---|---|
static CatalogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogType DELTASHARING_CATALOG
public static final CatalogType MANAGED_CATALOG
public static final CatalogType SYSTEM_CATALOG
public static CatalogType[] values()
for (CatalogType c : CatalogType.values()) System.out.println(c);
public static CatalogType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.