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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IBmIndexManager.BmIndexOptionsvalueOf(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- 
InMemorypublic static final IBmIndexManager.BmIndexOptions InMemory Mark a index values to be all in memory.
 - 
MemoryLRUpublic static final IBmIndexManager.BmIndexOptions MemoryLRU 
 - 
LRU1kpublic static final IBmIndexManager.BmIndexOptions LRU1k 
 - 
LRU50kpublic static final IBmIndexManager.BmIndexOptions LRU50k 
 - 
LRU100kpublic static final IBmIndexManager.BmIndexOptions LRU100k 
 - 
LRU500kpublic static final IBmIndexManager.BmIndexOptions LRU500k 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-