Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.infinispan.persistence.sifs.configuration.Attribute
-
- All Implemented Interfaces:
Serializable
,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
Enumerates the attributes used by the SoftIndex cache stores configuration- Author:
- Ray Tsang
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACTION_THRESHOLD
INDEX_QUEUE_LENGTH
MAX_FILE_SIZE
MAX_NODE_SIZE
MIN_NODE_SIZE
OPEN_FILES_LIMIT
PATH
RELATIVE_TO
SEGMENTS
SYNC_WRITES
UNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Attribute UNKNOWN
-
COMPACTION_THRESHOLD
public static final Attribute COMPACTION_THRESHOLD
-
PATH
public static final Attribute PATH
-
INDEX_QUEUE_LENGTH
public static final Attribute INDEX_QUEUE_LENGTH
-
SEGMENTS
public static final Attribute SEGMENTS
-
MAX_FILE_SIZE
public static final Attribute MAX_FILE_SIZE
-
MAX_NODE_SIZE
public static final Attribute MAX_NODE_SIZE
-
MIN_NODE_SIZE
public static final Attribute MIN_NODE_SIZE
-
OPEN_FILES_LIMIT
public static final Attribute OPEN_FILES_LIMIT
-
SYNC_WRITES
public static final Attribute SYNC_WRITES
-
RELATIVE_TO
public static final Attribute RELATIVE_TO
-
-
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 nameNullPointerException
- if the argument is null
-
getLocalName
public String getLocalName()
Get the local name of this element.- Returns:
- the local name
-
-