Package org.projectnessie.model
Class DeltaLakeTable
- java.lang.Object
-
- org.projectnessie.model.Content
-
- org.projectnessie.model.DeltaLakeTable
-
@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 java.util.List<java.lang.String>getCheckpointLocationHistory()abstract java.lang.StringgetLastCheckpoint()abstract @NotNull java.util.List<java.lang.String>getMetadataLocationHistory()Content.TypegetType()Returns theContent.Typevalue for this content object.
-
-
-
Method Detail
-
getMetadataLocationHistory
@NotNull public abstract @NotNull java.util.List<java.lang.String> getMetadataLocationHistory()
-
getCheckpointLocationHistory
@NotNull public abstract @NotNull java.util.List<java.lang.String> getCheckpointLocationHistory()
-
getLastCheckpoint
@Nullable public abstract java.lang.String getLastCheckpoint()
-
getType
public Content.Type getType()
Description copied from class:ContentReturns theContent.Typevalue for this content object.The name of the returned value should match the JSON type name used for serializing the content object.
-
-