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 Summary
Enum Constants Enum Constant Description Boolean
ByteArray
ByteArray2
ByteArray3
Int
Long
LongArray
LongArray2
LongArray3
String
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IBmIndexManager.BmIndexValueKind
valueOf(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
-
String
public static final IBmIndexManager.BmIndexValueKind String
-
Long
public static final IBmIndexManager.BmIndexValueKind Long
-
Int
public static final IBmIndexManager.BmIndexValueKind Int
-
ByteArray
public static final IBmIndexManager.BmIndexValueKind ByteArray
-
ByteArray2
public static final IBmIndexManager.BmIndexValueKind ByteArray2
-
ByteArray3
public static final IBmIndexManager.BmIndexValueKind ByteArray3
-
LongArray
public static final IBmIndexManager.BmIndexValueKind LongArray
-
LongArray2
public static final IBmIndexManager.BmIndexValueKind LongArray2
-
LongArray3
public static final IBmIndexManager.BmIndexValueKind LongArray3
-
Boolean
public static final IBmIndexManager.BmIndexValueKind Boolean
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-