Class ListTablesResponse
- java.lang.Object
- 
- org.apache.iceberg.rest.responses.ListTablesResponse
 
- 
- All Implemented Interfaces:
- RESTMessage,- RESTResponse
 
 public class ListTablesResponse extends java.lang.Object implements RESTResponse A list of table identifiers in a given namespace.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classListTablesResponse.Builder
 - 
Constructor SummaryConstructors Constructor Description ListTablesResponse()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListTablesResponse.Builderbuilder()java.util.List<TableIdentifier>identifiers()java.lang.StringtoString()voidvalidate()Ensures that a constructed instance of a REST message is valid according to the REST spec.
 
- 
- 
- 
Method Detail- 
validatepublic void validate() Description copied from interface:RESTMessageEnsures that a constructed instance of a REST message is valid according to the REST spec.This is needed when parsing data that comes from external sources and the object might have been constructed without all the required fields present. - Specified by:
- validatein interface- RESTMessage
 
 - 
identifierspublic java.util.List<TableIdentifier> identifiers() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
builderpublic static ListTablesResponse.Builder builder() 
 
- 
 
-