Package com.dremio.nessie.iceberg
Class ParsedTableIdentifier
- java.lang.Object
-
- com.dremio.nessie.iceberg.ParsedTableIdentifier
-
public class ParsedTableIdentifier extends Object
-
-
Constructor Summary
Constructors Constructor Description ParsedTableIdentifier(org.apache.iceberg.catalog.TableIdentifier tableIdentifier, Instant timestamp, String reference)container class to hold all options in a Nessie table name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ParsedTableIdentifiergetParsedTableIdentifier(String path, Map<String,String> properties)Convert dataset read/write options to a table and ref/hash.static ParsedTableIdentifiergetParsedTableIdentifier(org.apache.iceberg.catalog.TableIdentifier path, Map<String,String> properties)Convert dataset read/write options to a table and ref/hash.StringgetReference()org.apache.iceberg.catalog.TableIdentifiergetTableIdentifier()InstantgetTimestamp()
-
-
-
Method Detail
-
getTableIdentifier
public org.apache.iceberg.catalog.TableIdentifier getTableIdentifier()
-
getTimestamp
public Instant getTimestamp()
-
getReference
public String getReference()
-
getParsedTableIdentifier
public static ParsedTableIdentifier getParsedTableIdentifier(String path, Map<String,String> properties)
Convert dataset read/write options to a table and ref/hash.
-
getParsedTableIdentifier
public static ParsedTableIdentifier getParsedTableIdentifier(org.apache.iceberg.catalog.TableIdentifier path, Map<String,String> properties)
Convert dataset read/write options to a table and ref/hash.
-
-