Class EnterpriseTableLocationKeyUnresolved
java.lang.Object
io.deephaven.engine.table.impl.locations.impl.PartitionedTableLocationKey
io.deephaven.engine.table.impl.locations.local.FileTableLocationKey
io.deephaven.enterprise.locations.local.EnterpriseTableLocationKeyUnresolved
- All Implemented Interfaces:
LogOutputAppendable
,ImmutableTableLocationKey
,TableLocationKey
,EnterpriseTableLocationKey
,NamedImplementation
,Comparable<TableLocationKey>
- Direct Known Subclasses:
SnapshotBackedTableLocationKey
public class EnterpriseTableLocationKeyUnresolved
extends FileTableLocationKey
implements EnterpriseTableLocationKey
An
EnterpriseTableLocationKey
is an extension of FileTableLocationKey
that defers the creation of the
actual location key until the data is needed by the EnterpriseTableLocationFactory
.-
Nested Class Summary
Nested classes/interfaces inherited from class io.deephaven.engine.table.impl.locations.impl.PartitionedTableLocationKey
PartitionedTableLocationKey.PartitionsComparator, PartitionedTableLocationKey.PartitionsFormatter
-
Field Summary
Fields inherited from class io.deephaven.engine.table.impl.locations.local.FileTableLocationKey
file
Fields inherited from class io.deephaven.engine.table.impl.locations.impl.PartitionedTableLocationKey
partitions
Fields inherited from interface io.deephaven.engine.table.impl.locations.ImmutableTableLocationKey
ZERO_LENGTH_IMMUTABLE_TABLE_LOCATION_KEY_ARRAY
-
Constructor Summary
ConstructorsConstructorDescriptionEnterpriseTableLocationKeyUnresolved
(@NotNull File file) Construct a new EnterpriseTableLocationKeyUnresolved for the suppliedfile
without any partitioning support.EnterpriseTableLocationKeyUnresolved
(@NotNull File file, @Nullable Map<String, Comparable<?>> partitions) Construct a new EnterpriseTableLocationKeyUnresolved for the suppliedfile
andpartitions
. -
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(@NotNull TableLocationKey other) boolean
@NotNull Map<String,
Comparable<?>> Get the Column and Internal partitions as a map.int
hashCode()
Methods inherited from class io.deephaven.engine.table.impl.locations.local.FileTableLocationKey
append, getFile, getImplementationName, toString
Methods inherited from class io.deephaven.engine.table.impl.locations.impl.PartitionedTableLocationKey
getPartitionKeys, getPartitionValue
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.deephaven.enterprise.locations.EnterpriseTableLocationKey
hasLocationSnapshot
Methods inherited from interface io.deephaven.engine.table.impl.locations.ImmutableTableLocationKey
makeImmutable
Methods inherited from interface io.deephaven.base.log.LogOutputAppendable
append
Methods inherited from interface io.deephaven.util.type.NamedImplementation
getImplementationName
Methods inherited from interface io.deephaven.engine.table.impl.locations.TableLocationKey
getPartitionKeys, getPartitionValue
-
Constructor Details
-
EnterpriseTableLocationKeyUnresolved
Construct a new EnterpriseTableLocationKeyUnresolved for the suppliedfile
without any partitioning support.- Parameters:
file
- The file (or directory) that backs the keyed location. Will be adjusted to an absolute path.
-
EnterpriseTableLocationKeyUnresolved
public EnterpriseTableLocationKeyUnresolved(@NotNull @NotNull File file, @Nullable @Nullable Map<String, Comparable<?>> partitions) Construct a new EnterpriseTableLocationKeyUnresolved for the suppliedfile
andpartitions
.- Parameters:
file
- The file (or directory) that backs the keyed location. Will be adjusted to an absolute path.partitions
- The table partitions enclosing the table location keyed bythis
. Note that if this parameter isnull
, the location will be a member of no partitions. An ordered copy of the map will be made, so the calling code is free to mutate the map after this call completes, but the partition keys and values themselves must be effectively immutable.
-
-
Method Details
-
getPartitions
Description copied from interface:EnterpriseTableLocationKey
Get the Column and Internal partitions as a map.- Specified by:
getPartitions
in interfaceEnterpriseTableLocationKey
- Returns:
- a map of the partitions
-
hashCode
public int hashCode()- Overrides:
hashCode
in classFileTableLocationKey
-
compareTo
- Specified by:
compareTo
in interfaceComparable<TableLocationKey>
- Overrides:
compareTo
in classFileTableLocationKey
-
equals
- Overrides:
equals
in classFileTableLocationKey
-