Class GetNamespaceResponse
- java.lang.Object
- 
- org.apache.iceberg.rest.responses.GetNamespaceResponse
 
- 
- All Implemented Interfaces:
- RESTMessage,- RESTResponse
 
 public class GetNamespaceResponse extends java.lang.Object implements RESTResponse Represents a REST response to fetch a namespace and its metadata properties
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classGetNamespaceResponse.Builder
 - 
Constructor SummaryConstructors Constructor Description GetNamespaceResponse()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetNamespaceResponse.Builderbuilder()Namespacenamespace()java.util.Map<java.lang.String,java.lang.String>properties()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
 
 - 
namespacepublic Namespace namespace() 
 - 
propertiespublic java.util.Map<java.lang.String,java.lang.String> properties() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
builderpublic static GetNamespaceResponse.Builder builder() 
 
- 
 
-