Infinispan Distribution 5.2.6.Final-redhat-2

org.infinispan.configuration.as
Enum Attribute

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

public enum Attribute
extends Enum<Attribute>

Enumerates the attributes used in Infinispan

Author:
Tristan Tarrant

Enum Constant Summary
ACQUIRE_TIMEOUT
           
ALIASES
           
ASYNC_MARSHALLING
           
BATCHING
           
CACHE
           
CHUNK_SIZE
           
CLASS
           
CLUSTER
           
CONCURRENCY_LEVEL
           
DEFAULT_CACHE
           
DEFAULT_CACHE_CONTAINER
           
DEFAULT_EXECUTOR
           
DEFAULT_INTERFACE
           
DIAGNOSTICS_SOCKET_BINDING
           
ENABLED
           
EVICTION_EXECUTOR
           
EXECUTOR
           
FETCH_STATE
           
FLUSH_LOCK_TIMEOUT
           
HOST
           
INDEXING
           
INTERFACE
           
INTERVAL
           
ISOLATION
           
JNDI_NAME
           
L1_LIFESPAN
           
LIFESPAN
           
LISTENER_EXECUTOR
           
LOCK_TIMEOUT
           
LOCKING
           
MACHINE
           
MAX_ENTRIES
           
MAX_IDLE
           
MODE
           
MODIFICATION_QUEUE_SIZE
           
MODULE
           
NAME
           
OOB_EXECUTOR
           
OWNERS
           
PASSIVATION
           
PATH
           
PORT
           
PORT_OFFSET
           
PRELOAD
           
PURGE
           
QUEUE_FLUSH_INTERVAL
           
QUEUE_SIZE
           
RACK
           
RELATIVE_TO
           
REMOTE_TIMEOUT
           
REPLICATION_QUEUE_EXECUTOR
           
SHARED
           
SHUTDOWN_TIMEOUT
           
SINGLETON
           
SITE
           
SOCKET_BINDING
           
SOCKET_TIMEOUT
           
STACK
           
START
           
STOP_TIMEOUT
           
STRATEGY
           
STRIPING
           
TCP_NO_DELAY
           
THREAD_FACTORY
           
THREAD_POOL_SIZE
           
TIMEOUT
           
TIMER_EXECUTOR
           
TYPE
           
UNKNOWN
           
VALUE
           
VIRTUAL_NODES
           
 
Method Summary
static Attribute forName(String localName)
           
 String getLocalName()
          Get the local name of this element.
static Attribute valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Attribute[] 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 Attribute UNKNOWN

ACQUIRE_TIMEOUT

public static final Attribute ACQUIRE_TIMEOUT

ALIASES

public static final Attribute ALIASES

ASYNC_MARSHALLING

public static final Attribute ASYNC_MARSHALLING

BATCHING

public static final Attribute BATCHING

CACHE

public static final Attribute CACHE

CHUNK_SIZE

public static final Attribute CHUNK_SIZE

CLASS

public static final Attribute CLASS

CLUSTER

public static final Attribute CLUSTER

CONCURRENCY_LEVEL

public static final Attribute CONCURRENCY_LEVEL

DEFAULT_CACHE

public static final Attribute DEFAULT_CACHE

DEFAULT_CACHE_CONTAINER

public static final Attribute DEFAULT_CACHE_CONTAINER

DEFAULT_EXECUTOR

public static final Attribute DEFAULT_EXECUTOR

DEFAULT_INTERFACE

public static final Attribute DEFAULT_INTERFACE

DIAGNOSTICS_SOCKET_BINDING

public static final Attribute DIAGNOSTICS_SOCKET_BINDING

ENABLED

public static final Attribute ENABLED

EVICTION_EXECUTOR

public static final Attribute EVICTION_EXECUTOR

EXECUTOR

public static final Attribute EXECUTOR

FETCH_STATE

public static final Attribute FETCH_STATE

FLUSH_LOCK_TIMEOUT

public static final Attribute FLUSH_LOCK_TIMEOUT

HOST

public static final Attribute HOST

INDEXING

public static final Attribute INDEXING

INTERFACE

public static final Attribute INTERFACE

INTERVAL

public static final Attribute INTERVAL

ISOLATION

public static final Attribute ISOLATION

JNDI_NAME

public static final Attribute JNDI_NAME

L1_LIFESPAN

public static final Attribute L1_LIFESPAN

LIFESPAN

public static final Attribute LIFESPAN

LISTENER_EXECUTOR

public static final Attribute LISTENER_EXECUTOR

LOCK_TIMEOUT

public static final Attribute LOCK_TIMEOUT

LOCKING

public static final Attribute LOCKING

MACHINE

public static final Attribute MACHINE

MAX_ENTRIES

public static final Attribute MAX_ENTRIES

MAX_IDLE

public static final Attribute MAX_IDLE

MODE

public static final Attribute MODE

MODIFICATION_QUEUE_SIZE

public static final Attribute MODIFICATION_QUEUE_SIZE

MODULE

public static final Attribute MODULE

NAME

public static final Attribute NAME

OOB_EXECUTOR

public static final Attribute OOB_EXECUTOR

OWNERS

public static final Attribute OWNERS

PASSIVATION

public static final Attribute PASSIVATION

PATH

public static final Attribute PATH

PORT

public static final Attribute PORT

PORT_OFFSET

public static final Attribute PORT_OFFSET

PRELOAD

public static final Attribute PRELOAD

PURGE

public static final Attribute PURGE

QUEUE_FLUSH_INTERVAL

public static final Attribute QUEUE_FLUSH_INTERVAL

QUEUE_SIZE

public static final Attribute QUEUE_SIZE

RACK

public static final Attribute RACK

RELATIVE_TO

public static final Attribute RELATIVE_TO

REMOTE_TIMEOUT

public static final Attribute REMOTE_TIMEOUT

REPLICATION_QUEUE_EXECUTOR

public static final Attribute REPLICATION_QUEUE_EXECUTOR

SHARED

public static final Attribute SHARED

SHUTDOWN_TIMEOUT

public static final Attribute SHUTDOWN_TIMEOUT

SINGLETON

public static final Attribute SINGLETON

SITE

public static final Attribute SITE

SOCKET_BINDING

public static final Attribute SOCKET_BINDING

SOCKET_TIMEOUT

public static final Attribute SOCKET_TIMEOUT

STACK

public static final Attribute STACK

START

public static final Attribute START

STOP_TIMEOUT

public static final Attribute STOP_TIMEOUT

STRATEGY

public static final Attribute STRATEGY

STRIPING

public static final Attribute STRIPING

TCP_NO_DELAY

public static final Attribute TCP_NO_DELAY

THREAD_FACTORY

public static final Attribute THREAD_FACTORY

THREAD_POOL_SIZE

public static final Attribute THREAD_POOL_SIZE

TIMEOUT

public static final Attribute TIMEOUT

TIMER_EXECUTOR

public static final Attribute TIMER_EXECUTOR

TYPE

public static final Attribute TYPE

VALUE

public static final Attribute VALUE

VIRTUAL_NODES

public static final Attribute VIRTUAL_NODES
Method Detail

values

public static Attribute[] 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 (Attribute c : Attribute.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Attribute 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

forName

public static Attribute forName(String localName)

getLocalName

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

Returns:
the local name

Infinispan Distribution 5.2.6.Final-redhat-2

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