Uses of Class
com.couchbase.client.java.manager.view.View
-
Packages that use View Package Description com.couchbase.client.java.manager.view -
-
Uses of View in com.couchbase.client.java.manager.view
Methods in com.couchbase.client.java.manager.view that return types with arguments of type View Modifier and Type Method Description Optional<View>
DesignDocument. getView(String name)
Returns the view with the given name, if it exists.Map<String,View>
DesignDocument. views()
Returns the views in this document indexed by name.Methods in com.couchbase.client.java.manager.view with parameters of type View Modifier and Type Method Description DesignDocument
DesignDocument. putView(String name, View view)
Convenience method for adding a view to this design document (replacing any existing view with the same name).Method parameters in com.couchbase.client.java.manager.view with type arguments of type View Modifier and Type Method Description DesignDocument
DesignDocument. views(Map<String,View> views)
Sets all of the views for this design document, overriding any existing views.Constructor parameters in com.couchbase.client.java.manager.view with type arguments of type View Constructor Description DesignDocument(String name, Map<String,View> views)
Creates a new design document with the given name and views.
-