org.infinispan.configuration.parsing
Enum Element

java.lang.Object
  extended by java.lang.Enum<Element>
      extended by org.infinispan.configuration.parsing.Element
All Implemented Interfaces:
Serializable, Comparable<Element>

public enum Element
extends Enum<Element>

An enumeration of all the recognized XML element local names, by name.

Author:
Pete Muir

Enum Constant Summary
ADVANCED_EXTERNALIZER
           
ADVANCED_EXTERNALIZERS
           
ASYNC
           
ASYNC_LISTENER_EXECUTOR
           
ASYNC_TRANSPORT_EXECUTOR
           
BACKUP
           
BACKUP_FOR
           
BACKUPS
           
CLUSTER_LOADER
           
CLUSTERING
           
COMPATIBILITY
           
CUSTOM_INTERCEPTORS
           
DATA_CONTAINER
           
DEADLOCK_DETECTION
           
DEFAULT
           
EVICTION
           
EVICTION_SCHEDULED_EXECUTOR
           
EXPIRATION
           
FILE_STORE
           
GLOBAL
           
GLOBAL_JMX_STATISTICS
           
GROUPER
           
GROUPS
           
HASH
           
INDEXING
           
INTERCEPTOR
           
INVOCATION_BATCHING
           
JMX_STATISTICS
           
L1
           
LAZY_DESERIALIZATION
           
LOADER
           
LOADERS
           
LOCKING
           
MODULES
           
NAMED_CACHE
           
PROPERTIES
           
PROPERTY
           
RECOVERY
           
REMOTE_COMMNAND_EXECUTOR
           
REPLICATION_QUEUE_SCHEDULED_EXECUTOR
           
ROOT
           
SERIALIZATION
           
SHUTDOWN
           
SINGLETON_STORE
           
SITE
           
SITES
           
STATE_RETRIEVAL
           
STATE_TRANSFER
           
STORE
           
STORE_AS_BINARY
           
SYNC
           
TAKE_OFFLINE
           
TOTAL_ORDER_EXECUTOR
           
TRANSACTION
           
TRANSPORT
           
UNKNOWN
           
UNSAFE
           
VERSIONING
           
 
Method Summary
static Element forName(String localName)
           
 String getLocalName()
          Get the local name of this element.
static Element valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final Element UNKNOWN

ADVANCED_EXTERNALIZER

public static final Element ADVANCED_EXTERNALIZER

ADVANCED_EXTERNALIZERS

public static final Element ADVANCED_EXTERNALIZERS

ASYNC

public static final Element ASYNC

ASYNC_LISTENER_EXECUTOR

public static final Element ASYNC_LISTENER_EXECUTOR

ASYNC_TRANSPORT_EXECUTOR

public static final Element ASYNC_TRANSPORT_EXECUTOR

REMOTE_COMMNAND_EXECUTOR

public static final Element REMOTE_COMMNAND_EXECUTOR

CLUSTERING

public static final Element CLUSTERING

CLUSTER_LOADER

public static final Element CLUSTER_LOADER

COMPATIBILITY

public static final Element COMPATIBILITY

CUSTOM_INTERCEPTORS

public static final Element CUSTOM_INTERCEPTORS

DATA_CONTAINER

public static final Element DATA_CONTAINER

DEADLOCK_DETECTION

public static final Element DEADLOCK_DETECTION

DEFAULT

public static final Element DEFAULT

EVICTION

public static final Element EVICTION

EVICTION_SCHEDULED_EXECUTOR

public static final Element EVICTION_SCHEDULED_EXECUTOR

EXPIRATION

public static final Element EXPIRATION

FILE_STORE

public static final Element FILE_STORE

GROUPS

public static final Element GROUPS

GROUPER

public static final Element GROUPER

GLOBAL

public static final Element GLOBAL

GLOBAL_JMX_STATISTICS

public static final Element GLOBAL_JMX_STATISTICS

HASH

public static final Element HASH

INDEXING

public static final Element INDEXING

INTERCEPTOR

public static final Element INTERCEPTOR

INVOCATION_BATCHING

public static final Element INVOCATION_BATCHING

JMX_STATISTICS

public static final Element JMX_STATISTICS

L1

public static final Element L1

LAZY_DESERIALIZATION

public static final Element LAZY_DESERIALIZATION

LOADER

public static final Element LOADER

LOADERS

public static final Element LOADERS

LOCKING

public static final Element LOCKING

MODULES

public static final Element MODULES

NAMED_CACHE

public static final Element NAMED_CACHE

PROPERTIES

public static final Element PROPERTIES

PROPERTY

public static final Element PROPERTY

RECOVERY

public static final Element RECOVERY

REPLICATION_QUEUE_SCHEDULED_EXECUTOR

public static final Element REPLICATION_QUEUE_SCHEDULED_EXECUTOR

ROOT

public static final Element ROOT

SERIALIZATION

public static final Element SERIALIZATION

SHUTDOWN

public static final Element SHUTDOWN

SINGLETON_STORE

public static final Element SINGLETON_STORE

STATE_RETRIEVAL

public static final Element STATE_RETRIEVAL

STATE_TRANSFER

public static final Element STATE_TRANSFER

STORE

public static final Element STORE

STORE_AS_BINARY

public static final Element STORE_AS_BINARY

SYNC

public static final Element SYNC

TRANSACTION

public static final Element TRANSACTION

TRANSPORT

public static final Element TRANSPORT

UNSAFE

public static final Element UNSAFE

VERSIONING

public static final Element VERSIONING

SITES

public static final Element SITES

SITE

public static final Element SITE

BACKUPS

public static final Element BACKUPS

BACKUP

public static final Element BACKUP

BACKUP_FOR

public static final Element BACKUP_FOR

TAKE_OFFLINE

public static final Element TAKE_OFFLINE

TOTAL_ORDER_EXECUTOR

public static final Element TOTAL_ORDER_EXECUTOR
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 name
NullPointerException - if the argument is null

getLocalName

public String getLocalName()
Get the local name of this element.

Returns:
the local name

forName

public static Element forName(String localName)

-->

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.