Enum Element
- java.lang.Object
-
- java.lang.Enum<Element>
-
- org.infinispan.tools.store.migrator.Element
-
- All Implemented Interfaces:
Serializable,Comparable<Element>
public enum Element extends Enum<Element>
- Since:
- 9.0
- Author:
- Ryan Emerson
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static ElementvalueOf(String name)Returns the enum constant of this type with the specified name.static Element[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BATCH
public static final Element BATCH
-
BINARY
public static final Element BINARY
-
CACHE_NAME
public static final Element CACHE_NAME
-
CLASS
public static final Element CLASS
-
COMPRESSION
public static final Element COMPRESSION
-
CONNECTION_URL
public static final Element CONNECTION_URL
-
CONNECTION_POOL
public static final Element CONNECTION_POOL
-
CONTEXT_INITIALIZERS
public static final Element CONTEXT_INITIALIZERS
-
DATA
public static final Element DATA
-
DB
public static final Element DB
-
DIALECT
public static final Element DIALECT
-
DISABLE_INDEXING
public static final Element DISABLE_INDEXING
-
DISABLE_UPSERT
public static final Element DISABLE_UPSERT
-
DRIVER_CLASS
public static final Element DRIVER_CLASS
-
EXTERNALIZERS
public static final Element EXTERNALIZERS
-
ID
public static final Element ID
-
INDEX_LOCATION
public static final Element INDEX_LOCATION
-
KEY_TO_STRING_MAPPER
public static final Element KEY_TO_STRING_MAPPER
-
LOCATION
public static final Element LOCATION
-
MAJOR_VERSION
public static final Element MAJOR_VERSION
-
MINOR_VERSION
public static final Element MINOR_VERSION
-
MARSHALLER
public static final Element MARSHALLER
-
NAME
public static final Element NAME
-
PASSWORD
public static final Element PASSWORD
-
SOURCE
public static final Element SOURCE
-
SEGMENT
public static final Element SEGMENT
-
SEGMENT_COUNT
public static final Element SEGMENT_COUNT
-
SIZE
public static final Element SIZE
-
STRING
public static final Element STRING
-
TARGET
public static final Element TARGET
-
TABLE
public static final Element TABLE
-
TABLE_NAME_PREFIX
public static final Element TABLE_NAME_PREFIX
-
TIMESTAMP
public static final Element TIMESTAMP
-
TYPE
public static final Element TYPE
-
USERNAME
public static final Element USERNAME
-
VERSION
public static final Element VERSION
-
-
Method Detail
-
values
public static Element[] 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 (Element c : Element.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Element 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
-
-