UaxUrlEmailTokenizer.java
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // Licensed under the MIT License.
- package com.azure.search.documents.indexes.models;
- import com.azure.core.annotation.Fluent;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import com.fasterxml.jackson.annotation.JsonTypeInfo;
- import com.fasterxml.jackson.annotation.JsonTypeName;
- /**
- * Tokenizes urls and emails as one token. This tokenizer is implemented using
- * Apache Lucene.
- */
- @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "@odata.type")
- @JsonTypeName("#Microsoft.Azure.Search.UaxUrlEmailTokenizer")
- @Fluent
- public final class UaxUrlEmailTokenizer extends LexicalTokenizer {
- /*
- * The maximum token length. Default is 255. Tokens longer than the maximum
- * length are split. The maximum token length that can be used is 300
- * characters.
- */
- @JsonProperty(value = "maxTokenLength")
- private Integer maxTokenLength;
- /**
- * Constructor of {@link UaxUrlEmailTokenizer}.
- *
- * @param name The name of the tokenizer. It must only contain letters, digits, spaces,
- * dashes or underscores, can only start and end with alphanumeric
- * characters, and is limited to 128 characters.
- */
- public UaxUrlEmailTokenizer(String name) {
- super(name);
- }
- /**
- * Get the maxTokenLength property: The maximum token length. Default is
- * 255. Tokens longer than the maximum length are split. The maximum token
- * length that can be used is 300 characters.
- *
- * @return the maxTokenLength value.
- */
- public Integer getMaxTokenLength() {
- return this.maxTokenLength;
- }
- /**
- * Set the maxTokenLength property: The maximum token length. Default is
- * 255. Tokens longer than the maximum length are split. The maximum token
- * length that can be used is 300 characters.
- *
- * @param maxTokenLength the maxTokenLength value to set.
- * @return the UaxUrlEmailTokenizer object itself.
- */
- public UaxUrlEmailTokenizer setMaxTokenLength(Integer maxTokenLength) {
- this.maxTokenLength = maxTokenLength;
- return this;
- }
- }