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 @NotNull java.util.List<java.lang.String>getCheckpointLocationHistory()abstract java.lang.StringgetLastCheckpoint()abstract @NotNull @NotNull java.util.List<java.lang.String>getMetadataLocationHistory()Content.TypegetType()Returns theContent.Typevalue for this content object.abstract DeltaLakeTablewithId(java.lang.String id)
-
-
-
Method Detail
-
getMetadataLocationHistory
@NotNull @NotNull public abstract @NotNull @NotNull java.util.List<java.lang.String> getMetadataLocationHistory()
-
getCheckpointLocationHistory
@NotNull @NotNull public abstract @NotNull @NotNull java.util.List<java.lang.String> getCheckpointLocationHistory()
-
getLastCheckpoint
@Nullable @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.
-
withId
public abstract DeltaLakeTable withId(java.lang.String id)
-
-