Package io.deephaven.enterprise.iceberg
Enum Class IcebergStorageProvider
- All Implemented Interfaces:
ExtendedStorageProvider,Serializable,Comparable<IcebergStorageProvider>,java.lang.constant.Constable
public enum IcebergStorageProvider
extends Enum<IcebergStorageProvider>
implements ExtendedStorageProvider
An
ExtendedStorageProvider for the "iceberg" type.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classThe factory class for creating this provider.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescription@NotNull TableLocationProvidergetProvider(@NotNull EnterpriseTableKey tableKey, @NotNull io.deephaven.shadow.enterprise.com.illumon.iris.db.schema.Schema schema, @NotNull io.deephaven.shadow.enterprise.com.illumon.iris.db.schema.ExtendedStorage extendedStorage, @Nullable io.deephaven.shadow.enterprise.com.illumon.iris.db.v2.locations.local.LocalTablePathManager pathManager, @NotNull Set<EnterpriseTableKey> warnedLocations, boolean useMetadataIndex) Get theTableLocationProviderfor the specified table key and extended storage type.static IcebergStorageProviderReturns the enum constant of this class with the specified name.static IcebergStorageProvider[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ICEBERG
-
-
Field Details
-
EXTENDED_STORAGE_TYPE
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getProvider
@NotNull public @NotNull TableLocationProvider getProvider(@NotNull @NotNull EnterpriseTableKey tableKey, @NotNull @NotNull io.deephaven.shadow.enterprise.com.illumon.iris.db.schema.Schema schema, @NotNull @NotNull io.deephaven.shadow.enterprise.com.illumon.iris.db.schema.ExtendedStorage extendedStorage, @Nullable @Nullable io.deephaven.shadow.enterprise.com.illumon.iris.db.v2.locations.local.LocalTablePathManager pathManager, @NotNull @NotNull Set<EnterpriseTableKey> warnedLocations, boolean useMetadataIndex) Description copied from interface:ExtendedStorageProviderGet theTableLocationProviderfor the specified table key and extended storage type.- Specified by:
getProviderin interfaceExtendedStorageProvider- Parameters:
tableKey- the table keyschema- the table schemaextendedStorage- theExtendedStorageelementpathManager- theLocalTablePathManagerfor locating tableswarnedLocations- a mutable set of locations for which warnings have been issueduseMetadataIndex- if a metadata index should be used when available- Returns:
- a
TableLocationProvider.
-