Package com._1c.g5.v8.bm.store
Enum IBmIndexManager.BmIndexOptions
- java.lang.Object
-
- java.lang.Enum<IBmIndexManager.BmIndexOptions>
-
- com._1c.g5.v8.bm.store.IBmIndexManager.BmIndexOptions
-
- All Implemented Interfaces:
Serializable
,Comparable<IBmIndexManager.BmIndexOptions>
- Enclosing interface:
- IBmIndexManager
public static enum IBmIndexManager.BmIndexOptions extends Enum<IBmIndexManager.BmIndexOptions>
Index options.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IBmIndexManager.BmIndexOptions
valueOf(String name)
Returns the enum constant of this type with the specified name.static IBmIndexManager.BmIndexOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
InMemory
public static final IBmIndexManager.BmIndexOptions InMemory
Mark a index values to be all in memory.
-
MemoryLRU
public static final IBmIndexManager.BmIndexOptions MemoryLRU
-
LRU1k
public static final IBmIndexManager.BmIndexOptions LRU1k
-
LRU50k
public static final IBmIndexManager.BmIndexOptions LRU50k
-
LRU100k
public static final IBmIndexManager.BmIndexOptions LRU100k
-
LRU500k
public static final IBmIndexManager.BmIndexOptions LRU500k
-
-
Method Detail
-
values
public static IBmIndexManager.BmIndexOptions[] 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 (IBmIndexManager.BmIndexOptions c : IBmIndexManager.BmIndexOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IBmIndexManager.BmIndexOptions 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
-
-