public static enum IndexDefinition.UniqueKeyTransform extends Enum<IndexDefinition.UniqueKeyTransform>
Enum Constant and Description |
---|
LONG
Extracted unique key value is interpreted as a whole integer value of
byte, short, int or long type.
|
OBJECT
Extracted unique key value is interpreted as an object value.
|
RAW
Extracted unique key value is interpreted as a whole integer value of
byte, short, int or long type.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static IndexDefinition.UniqueKeyTransform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexDefinition.UniqueKeyTransform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexDefinition.UniqueKeyTransform OBJECT
public static final IndexDefinition.UniqueKeyTransform LONG
public static final IndexDefinition.UniqueKeyTransform RAW
public static IndexDefinition.UniqueKeyTransform[] values()
for (IndexDefinition.UniqueKeyTransform c : IndexDefinition.UniqueKeyTransform.values()) System.out.println(c);
public static IndexDefinition.UniqueKeyTransform 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<IndexDefinition.UniqueKeyTransform>
Copyright © 2020 Hazelcast, Inc.. All Rights Reserved.