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

com.atlan.model.fields.InternalKeywordField Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// Generated by delombok at Thu Oct 10 18:56:33 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
   Copyright 2023 Atlan Pte. Ltd. */
package com.atlan.model.fields;

/**
 * Represents any field in Atlan that can be searched only by keyword (no text-analyzed fuzziness),
 * and can also be searched against a special internal field directly within Atlan.
 */
public class InternalKeywordField extends KeywordField implements IInternalSearchable {
    private final String internalFieldName;

    /**
     * Default constructor.
     *
     * @param atlan name of the attribute in the metastore
     * @param internal name of the internal searchable attribute in the metastore
     * @param keyword name of the keyword field in the search index
     */
    public InternalKeywordField(String atlan, String internal, String keyword) {
        super(atlan, keyword);
        this.internalFieldName = internal;
    }

    @java.lang.SuppressWarnings("all")
    @lombok.Generated
    public String getInternalFieldName() {
        return this.internalFieldName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy