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

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

There is a newer version: 3.0.0
Show newest version
// Generated by delombok at Wed Oct 16 22:16:04 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 using only numeric search operations,
 * and can also be searched against a special internal field directly within Atlan.
 */
public class InternalNumericField extends NumericField 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 numeric name of the numeric field in the search index
     */
    public InternalNumericField(String atlan, String internal, String numeric) {
        super(atlan, numeric);
        this.internalFieldName = internal;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy