java.lang.Object
java.lang.Enum<XMLElement>
org.jboss.as.clustering.infinispan.subsystem.XMLElement
All Implemented Interfaces:
Serializable, Comparable<XMLElement>

public enum XMLElement extends Enum<XMLElement>
Enumerates the elements used in the Infinispan subsystem schema.
Author:
Paul Ferraro, Richard Achmatowicz (c) 2011 RedHat Inc., Tristan Tarrant
  • Enum Constant Details

    • UNKNOWN

      public static final XMLElement UNKNOWN
    • ASYNC_OPERATIONS_THREAD_POOL

      @Deprecated public static final XMLElement ASYNC_OPERATIONS_THREAD_POOL
      Deprecated.
    • BACKUP

      public static final XMLElement BACKUP
    • BACKUP_FOR

      @Deprecated public static final XMLElement BACKUP_FOR
      Deprecated.
    • BACKUPS

      public static final XMLElement BACKUPS
    • BINARY_KEYED_TABLE

      public static final XMLElement BINARY_KEYED_TABLE
    • BLOCKING_THREAD_POOL

      public static final XMLElement BLOCKING_THREAD_POOL
    • BUCKET_TABLE

      @Deprecated public static final XMLElement BUCKET_TABLE
      Deprecated.
    • CACHE_CONTAINER

      public static final XMLElement CACHE_CONTAINER
    • DATA_COLUMN

      public static final XMLElement DATA_COLUMN
    • DISTRIBUTED_CACHE

      public static final XMLElement DISTRIBUTED_CACHE
    • ENTRIES

      public static final XMLElement ENTRIES
    • ENTRY_TABLE

      @Deprecated public static final XMLElement ENTRY_TABLE
      Deprecated.
    • EVICTION

      @Deprecated public static final XMLElement EVICTION
      Deprecated.
    • BINARY_MEMORY

      @Deprecated public static final XMLElement BINARY_MEMORY
      Deprecated.
    • HEAP_MEMORY

      public static final XMLElement HEAP_MEMORY
    • OBJECT_MEMORY

      @Deprecated public static final XMLElement OBJECT_MEMORY
      Deprecated.
    • OFF_HEAP_MEMORY

      public static final XMLElement OFF_HEAP_MEMORY
    • EXPIRATION

      public static final XMLElement EXPIRATION
    • EXPIRATION_THREAD_POOL

      public static final XMLElement EXPIRATION_THREAD_POOL
    • FILE_STORE

      public static final XMLElement FILE_STORE
    • ID_COLUMN

      public static final XMLElement ID_COLUMN
    • INVALIDATION_CACHE

      public static final XMLElement INVALIDATION_CACHE
    • LISTENER_THREAD_POOL

      public static final XMLElement LISTENER_THREAD_POOL
    • JDBC_STORE

      public static final XMLElement JDBC_STORE
    • STRING_KEYED_JDBC_STORE

      public static final XMLElement STRING_KEYED_JDBC_STORE
    • BINARY_KEYED_JDBC_STORE

      public static final XMLElement BINARY_KEYED_JDBC_STORE
    • MIXED_KEYED_JDBC_STORE

      public static final XMLElement MIXED_KEYED_JDBC_STORE
    • INDEXING

      @Deprecated public static final XMLElement INDEXING
      Deprecated.
    • LOCAL_CACHE

      public static final XMLElement LOCAL_CACHE
    • LOCKING

      public static final XMLElement LOCKING
    • NON_BLOCKING_THREAD_POOL

      public static final XMLElement NON_BLOCKING_THREAD_POOL
    • PARTITION_HANDLING

      public static final XMLElement PARTITION_HANDLING
    • PERSISTENCE_THREAD_POOL

      @Deprecated public static final XMLElement PERSISTENCE_THREAD_POOL
      Deprecated.
    • REMOTE_COMMAND_THREAD_POOL

      @Deprecated public static final XMLElement REMOTE_COMMAND_THREAD_POOL
      Deprecated.
    • PROPERTY

      public static final XMLElement PROPERTY
    • REMOTE_SERVER

      public static final XMLElement REMOTE_SERVER
    • REMOTE_STORE

      public static final XMLElement REMOTE_STORE
    • REPLICATED_CACHE

      public static final XMLElement REPLICATED_CACHE
    • SCATTERED_CACHE

      @Deprecated public static final XMLElement SCATTERED_CACHE
      Deprecated.
    • SEGMENT_COLUMN

      public static final XMLElement SEGMENT_COLUMN
    • SIZE

      public static final XMLElement SIZE
    • STATE_TRANSFER

      public static final XMLElement STATE_TRANSFER
    • STATE_TRANSFER_THREAD_POOL

      @Deprecated public static final XMLElement STATE_TRANSFER_THREAD_POOL
      Deprecated.
    • STORE

      public static final XMLElement STORE
    • STRING_KEYED_TABLE

      public static final XMLElement STRING_KEYED_TABLE
    • TABLE

      public static final XMLElement TABLE
    • TAKE_OFFLINE

      public static final XMLElement TAKE_OFFLINE
    • TIMESTAMP_COLUMN

      public static final XMLElement TIMESTAMP_COLUMN
    • TRANSACTION

      public static final XMLElement TRANSACTION
    • TRANSPORT

      public static final XMLElement TRANSPORT
    • TRANSPORT_THREAD_POOL

      @Deprecated public static final XMLElement TRANSPORT_THREAD_POOL
      Deprecated.
    • WRITE_BEHIND

      public static final XMLElement WRITE_BEHIND
    • REMOTE_CACHE_CONTAINER

      public static final XMLElement REMOTE_CACHE_CONTAINER
    • ASYNC_THREAD_POOL

      public static final XMLElement ASYNC_THREAD_POOL
    • CONNECTION_POOL

      public static final XMLElement CONNECTION_POOL
    • INVALIDATION_NEAR_CACHE

      public static final XMLElement INVALIDATION_NEAR_CACHE
    • REMOTE_CLUSTERS

      public static final XMLElement REMOTE_CLUSTERS
    • REMOTE_CLUSTER

      public static final XMLElement REMOTE_CLUSTER
    • SECURITY

      public static final XMLElement SECURITY
    • HOTROD_STORE

      public static final XMLElement HOTROD_STORE
  • Method Details

    • values

      public static XMLElement[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static XMLElement 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 XMLElement forName(String localName)