Class StrongCounterConfiguration
- java.lang.Object
-
- org.infinispan.counter.configuration.AbstractCounterConfiguration
-
- org.infinispan.counter.configuration.StrongCounterConfiguration
-
- All Implemented Interfaces:
BaseConfigurationInfo
,ConfigurationInfo
public class StrongCounterConfiguration extends AbstractCounterConfiguration
StrongCounter
configuration.- Since:
- 9.0
- Author:
- Pedro Ruivo
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeSet
attributeDefinitionSet()
ElementDefinition
getElementDefinition()
boolean
isBound()
long
lowerBound()
long
upperBound()
-
Methods inherited from class org.infinispan.counter.configuration.AbstractCounterConfiguration
attributes, initialValue, name, storage
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.infinispan.commons.configuration.ConfigurationInfo
subElements
-
-
-
-
Method Detail
-
getElementDefinition
public ElementDefinition getElementDefinition()
- Returns:
- the
ElementDefinition
of the configuration.
-
attributeDefinitionSet
public static AttributeSet attributeDefinitionSet()
-
isBound
public boolean isBound()
- Returns:
true
if the counter is bounded (lower and/or upper bound has been set),false
otherwise.
-
lowerBound
public long lowerBound()
-
upperBound
public long upperBound()
-
-