All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.chronos.chronodb.internal.impl.query.TextMatchMode Maven / Gradle / Ivy

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