Package com._1c.g5.v8.bm.store
Enum IBmIndexManager.BmIndexValueKind
- java.lang.Object
- 
- java.lang.Enum<IBmIndexManager.BmIndexValueKind>
- 
- com._1c.g5.v8.bm.store.IBmIndexManager.BmIndexValueKind
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<IBmIndexManager.BmIndexValueKind>
 - Enclosing interface:
- IBmIndexManager
 
 public static enum IBmIndexManager.BmIndexValueKind extends Enum<IBmIndexManager.BmIndexValueKind> Value kind.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BooleanByteArrayByteArray2ByteArray3IntLongLongArrayLongArray2LongArray3String
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IBmIndexManager.BmIndexValueKindvalueOf(String name)Returns the enum constant of this type with the specified name.static IBmIndexManager.BmIndexValueKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Stringpublic static final IBmIndexManager.BmIndexValueKind String 
 - 
Longpublic static final IBmIndexManager.BmIndexValueKind Long 
 - 
Intpublic static final IBmIndexManager.BmIndexValueKind Int 
 - 
ByteArraypublic static final IBmIndexManager.BmIndexValueKind ByteArray 
 - 
ByteArray2public static final IBmIndexManager.BmIndexValueKind ByteArray2 
 - 
ByteArray3public static final IBmIndexManager.BmIndexValueKind ByteArray3 
 - 
LongArraypublic static final IBmIndexManager.BmIndexValueKind LongArray 
 - 
LongArray2public static final IBmIndexManager.BmIndexValueKind LongArray2 
 - 
LongArray3public static final IBmIndexManager.BmIndexValueKind LongArray3 
 - 
Booleanpublic static final IBmIndexManager.BmIndexValueKind Boolean 
 
- 
 - 
Method Detail- 
valuespublic static IBmIndexManager.BmIndexValueKind[] 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.BmIndexValueKind c : IBmIndexManager.BmIndexValueKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IBmIndexManager.BmIndexValueKind 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
 
 
- 
 
-