Package com.arangodb.entity
Enum IndexType
- java.lang.Object
-
- java.lang.Enum<IndexType>
-
- com.arangodb.entity.IndexType
-
- All Implemented Interfaces:
Serializable
,Comparable<IndexType>
public enum IndexType extends Enum<IndexType>
- Author:
- Mark Vollmary, Heiko Kernbach
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexType
valueOf(String name)
Returns the enum constant of this type with the specified name.static IndexType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
primary
public static final IndexType primary
-
hash
public static final IndexType hash
-
skiplist
public static final IndexType skiplist
-
persistent
public static final IndexType persistent
-
geo
public static final IndexType geo
-
geo1
public static final IndexType geo1
-
geo2
public static final IndexType geo2
-
fulltext
@Deprecated public static final IndexType fulltext
Deprecated.since ArangoDB 3.10, use ArangoSearch or Inverted indexes instead.
-
edge
public static final IndexType edge
-
ttl
public static final IndexType ttl
-
zkd
public static final IndexType zkd
-
inverted
public static final IndexType inverted
- Since:
- ArangoDB 3.10
-
-
Method Detail
-
values
public static IndexType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndexType c : IndexType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-