@PublicEvolving public static enum CatalogBaseTable.TableKind extends Enum<CatalogBaseTable.TableKind>
CatalogBaseTable
.Enum Constant and Description |
---|
MATERIALIZED_TABLE |
TABLE |
VIEW |
Modifier and Type | Method and Description |
---|---|
static CatalogBaseTable.TableKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogBaseTable.TableKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogBaseTable.TableKind TABLE
public static final CatalogBaseTable.TableKind MATERIALIZED_TABLE
public static final CatalogBaseTable.TableKind VIEW
public static CatalogBaseTable.TableKind[] values()
for (CatalogBaseTable.TableKind c : CatalogBaseTable.TableKind.values()) System.out.println(c);
public static CatalogBaseTable.TableKind 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 © 2014–2024 The Apache Software Foundation. All rights reserved.