Package com.arangodb.entity
Class CollectionEntity
- java.lang.Object
-
- com.arangodb.entity.CollectionEntity
-
- Direct Known Subclasses:
CollectionPropertiesEntity
,CollectionRevisionEntity
public class CollectionEntity extends Object
- Author:
- Mark Vollmary
-
-
Constructor Summary
Constructors Constructor Description CollectionEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ComputedValue>
getComputedValues()
String
getId()
Boolean
getIsSystem()
String
getName()
CollectionSchema
getSchema()
CollectionStatus
getStatus()
CollectionType
getType()
Boolean
getWaitForSync()
-
-
-
Method Detail
-
getId
public String getId()
-
getName
public String getName()
-
getWaitForSync
public Boolean getWaitForSync()
-
getIsSystem
public Boolean getIsSystem()
-
getStatus
public CollectionStatus getStatus()
-
getType
public CollectionType getType()
-
getSchema
public CollectionSchema getSchema()
- Returns:
- Optional object that specifies the collection level schema for documents.
- Since:
- ArangoDB 3.7
-
getComputedValues
public List<ComputedValue> getComputedValues()
- Returns:
- A list of computed values.
- Since:
- ArangoDB 3.10
-
-