Package org.projectnessie.model
Class DeltaLakeTable
- java.lang.Object
-
- org.projectnessie.model.Content
-
- org.projectnessie.model.DeltaLakeTable
-
- Direct Known Subclasses:
ImmutableDeltaLakeTable
@Immutable public abstract class DeltaLakeTable extends Content
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.projectnessie.model.Content
Content.Type
-
-
Constructor Summary
Constructors Constructor Description DeltaLakeTable()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract @NotNull List<String>getCheckpointLocationHistory()abstract StringgetLastCheckpoint()abstract @NotNull List<String>getMetadataLocationHistory()Content.TypegetType()Returns theContent.Typeenum constant for this content object.
-
-
-
Method Detail
-
getMetadataLocationHistory
@NotNull public abstract @NotNull List<String> getMetadataLocationHistory()
-
getCheckpointLocationHistory
@NotNull public abstract @NotNull List<String> getCheckpointLocationHistory()
-
getType
public Content.Type getType()
Description copied from class:ContentReturns theContent.Typeenum constant for this content object.The name of the returned enum value should match the JSON type name used for serializing the content object.
-
-