public static enum BackendIndexCfgDefn.IndexType extends Enum<BackendIndexCfgDefn.IndexType>
Specifies the type(s) of indexing that should be performed for the associated attribute.
For equality, presence, and substring index types, the associated attribute type must have a corresponding matching rule.
Enum Constant and Description |
---|
APPROXIMATE
This index type is used to improve the efficiency of searches
using approximate matching search filters.
|
EQUALITY
This index type is used to improve the efficiency of searches
using equality search filters.
|
EXTENSIBLE
This index type is used to improve the efficiency of searches
using extensible matching search filters.
|
ORDERING
This index type is used to improve the efficiency of searches
using "greater than or equal to" or "less then or equal to"
search filters.
|
PRESENCE
This index type is used to improve the efficiency of searches
using the presence search filters.
|
SUBSTRING
This index type is used to improve the efficiency of searches
using substring search filters.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BackendIndexCfgDefn.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackendIndexCfgDefn.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackendIndexCfgDefn.IndexType APPROXIMATE
public static final BackendIndexCfgDefn.IndexType EQUALITY
public static final BackendIndexCfgDefn.IndexType EXTENSIBLE
public static final BackendIndexCfgDefn.IndexType ORDERING
public static final BackendIndexCfgDefn.IndexType PRESENCE
public static final BackendIndexCfgDefn.IndexType SUBSTRING
public static BackendIndexCfgDefn.IndexType[] values()
for (BackendIndexCfgDefn.IndexType c : BackendIndexCfgDefn.IndexType.values()) System.out.println(c);
public static BackendIndexCfgDefn.IndexType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<BackendIndexCfgDefn.IndexType>
Copyright 2010-2017 ForgeRock AS.