org.infinispan.configuration.cache.Index Maven / Gradle / Ivy
package org.infinispan.configuration.cache;
/**
* Used to configure indexing of entries in the cache for searching.
*
* @author Paul Ferraro
*/
public enum Index {
NONE, LOCAL, ALL;
public boolean isEnabled() {
return this == LOCAL || this == ALL;
}
public boolean isLocalOnly() {
return this == LOCAL;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy