/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.mongodb.client.model;

import com.mongodb.lang.Nullable;

Text search options for the Filters.text(String, TextSearchOptions) helper
@mongodb.driver.manualreference/operator/query/text $text
Since:3.2
/** * Text search options for the {@link Filters#text(String, TextSearchOptions)} helper * * @mongodb.driver.manual reference/operator/query/text $text * @since 3.2 */
public final class TextSearchOptions { private String language; private Boolean caseSensitive; private Boolean diacriticSensitive;
Returns the language to be used with the text search
Returns:the language to use for the text search if set or null
/** * Returns the language to be used with the text search * * @return the language to use for the text search if set or null */
@Nullable public String getLanguage() { return language; }
Set the language for the text search
Params:
  • language – the language to use for the text search
Returns:this
/** * Set the language for the text search * * @param language the language to use for the text search * @return this */
public TextSearchOptions language(@Nullable final String language) { this.language = language; return this; }
Returns the case-sensitive flag to use with the text search
Returns:the case-sensitive flag if set or null
@mongodb.server.release3.2
/** * Returns the case-sensitive flag to use with the text search * * @return the case-sensitive flag if set or null * @mongodb.server.release 3.2 */
@Nullable public Boolean getCaseSensitive() { return caseSensitive; }
Set the case-sensitive flag for the text search
Params:
  • caseSensitive – the case-sensitive flag for the text search
Returns:this
@mongodb.server.release3.2
/** * Set the case-sensitive flag for the text search * * @param caseSensitive the case-sensitive flag for the text search * @return this * @mongodb.server.release 3.2 */
public TextSearchOptions caseSensitive(@Nullable final Boolean caseSensitive) { this.caseSensitive = caseSensitive; return this; }
Returns the diacritic-sensitive flag to use with the text search
Returns:the diacritic-sensitive flag if set or null
@mongodb.server.release3.2
/** * Returns the diacritic-sensitive flag to use with the text search * * @return the diacritic-sensitive flag if set or null * @mongodb.server.release 3.2 */
@Nullable public Boolean getDiacriticSensitive() { return diacriticSensitive; }
Set the diacritic-sensitive flag for the text search
Params:
  • diacriticSensitive – the diacritic-sensitive flag for the text search
Returns:this
@mongodb.server.release3.2
/** * Set the diacritic-sensitive flag for the text search * * @param diacriticSensitive the diacritic-sensitive flag for the text search * @return this * @mongodb.server.release 3.2 */
public TextSearchOptions diacriticSensitive(@Nullable final Boolean diacriticSensitive) { this.diacriticSensitive = diacriticSensitive; return this; } @Override public boolean equals(final Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } TextSearchOptions that = (TextSearchOptions) o; if (language != null ? !language.equals(that.language) : that.language != null) { return false; } if (caseSensitive != null ? !caseSensitive.equals(that.caseSensitive) : that.caseSensitive != null) { return false; } return diacriticSensitive != null ? diacriticSensitive.equals(that.diacriticSensitive) : that.diacriticSensitive == null; } @Override public int hashCode() { int result = language != null ? language.hashCode() : 0; result = 31 * result + (caseSensitive != null ? caseSensitive.hashCode() : 0); result = 31 * result + (diacriticSensitive != null ? diacriticSensitive.hashCode() : 0); return result; } @Override public String toString() { return "Text Search Options{" + "language='" + language + '\'' + ", caseSensitive=" + caseSensitive + ", diacriticSensitive=" + diacriticSensitive + '}'; } }