Class TableIdentifierParser

java.lang.Object
org.apache.iceberg.catalog.TableIdentifierParser

public class TableIdentifierParser extends Object
Parses TableIdentifiers from a JSON representation, which is the JSON representation utilized in the REST catalog.

For TableIdentifier.of("dogs", "owners.and.handlers", "food"), we'd have the following JSON representation, where the dot character of an individual level is in the namespace is replaced by the unit separator byte character.

 {
   "namespace": ["dogs", "owners.and.handlers"],
   "name": "food"
 }