![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.SearchAlias Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
/*
* DISCLAIMER
*
* Copyright 2018 ArangoDB GmbH, Cologne, Germany
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Copyright holder is ArangoDB GmbH, Cologne, Germany
*/
package com.arangodb;
import com.arangodb.entity.ViewEntity;
import com.arangodb.entity.arangosearch.SearchAliasPropertiesEntity;
import com.arangodb.model.arangosearch.SearchAliasCreateOptions;
import com.arangodb.model.arangosearch.SearchAliasPropertiesOptions;
/**
* Interface for operations on ArangoDB view level for SearchAlias views.
*
* @author Michele Rastelli
* @see View API Documentation
* @since ArangoDB 3.10
*/
public interface SearchAlias extends ArangoView {
/**
* Creates a view, then returns view information from the server.
*
* @return information about the view
* @see API
* Documentation
*/
ViewEntity create();
/**
* Creates a view with the given {@code options}, then returns view information from the server.
*
* @param options Additional options, can be null
* @return information about the view
* @see API
* Documentation
*/
ViewEntity create(SearchAliasCreateOptions options);
/**
* Reads the properties of the specified view.
*
* @return properties of the view
* @see API
* Documentation
*/
SearchAliasPropertiesEntity getProperties();
/**
* Partially changes properties of the view.
*
* @param options properties to change
* @return properties of the view
* @see API
* Documentation
*/
SearchAliasPropertiesEntity updateProperties(SearchAliasPropertiesOptions options);
/**
* Changes properties of the view.
*
* @param options properties to change
* @return properties of the view
* @see API
* Documentation
*/
SearchAliasPropertiesEntity replaceProperties(SearchAliasPropertiesOptions options);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy