Package com.arangodb
Interface ArangoSearch
-
- All Superinterfaces:
ArangoSerdeAccessor
,ArangoView
@ThreadSafe public interface ArangoSearch extends ArangoView
Interface for operations on ArangoDB view level for ArangoSearch views.- Since:
- ArangoDB 3.4.0
- Author:
- Mark Vollmary
- See Also:
- View API Documentation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ViewEntity
create()
Creates a view, then returns view information from the server.ViewEntity
create(ArangoSearchCreateOptions options)
Creates a view with the givenoptions
, then returns view information from the server.ArangoSearchPropertiesEntity
getProperties()
Reads the properties of the specified view.ArangoSearchPropertiesEntity
replaceProperties(ArangoSearchPropertiesOptions options)
Changes properties of the view.ArangoSearchPropertiesEntity
updateProperties(ArangoSearchPropertiesOptions options)
Partially changes properties of the view.-
Methods inherited from interface com.arangodb.ArangoSerdeAccessor
getSerde
-
-
-
-
Method Detail
-
create
ViewEntity create()
Creates a view, then returns view information from the server.- Returns:
- information about the view
- See Also:
- API Documentation
-
create
ViewEntity create(ArangoSearchCreateOptions options)
Creates a view with the givenoptions
, then returns view information from the server.- Parameters:
options
- Additional options, can be null- Returns:
- information about the view
- See Also:
- API Documentation
-
getProperties
ArangoSearchPropertiesEntity getProperties()
Reads the properties of the specified view.- Returns:
- properties of the view
- See Also:
- API Documentation
-
updateProperties
ArangoSearchPropertiesEntity updateProperties(ArangoSearchPropertiesOptions options)
Partially changes properties of the view.- Parameters:
options
- properties to change- Returns:
- properties of the view
- See Also:
- API Documentation
-
replaceProperties
ArangoSearchPropertiesEntity replaceProperties(ArangoSearchPropertiesOptions options)
Changes properties of the view.- Parameters:
options
- properties to change- Returns:
- properties of the view
- See Also:
- API Documentation
-
-