
org.chronos.chronodb.internal.impl.query.TextMatchMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.chronos.chronodb.api Show documentation
Show all versions of org.chronos.chronodb.api Show documentation
Versioned data storage, embeddable and easy to use.
The newest version!
package org.chronos.chronodb.internal.impl.query;
import org.chronos.chronodb.api.query.Condition;
/**
* A simple enumeration that decides how to match a text query against the index.
*
*
* Usually used in conjunction with a {@link Condition}.
*
* @author [email protected] -- Initial Contribution and API
*
*/
public enum TextMatchMode {
/** Strict text matching (i.e. respecting upper- & lowercase differences). */
STRICT,
/** Case insensitive matching. */
CASE_INSENSITIVE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy