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

com.mongodb.client.model.GraphLookupOptions Maven / Gradle / Ivy

Go to download

The Java operations layer for the MongoDB Java Driver. Third parties can ' + 'wrap this layer to provide custom higher-level APIs

There is a newer version: 5.1.4
Show newest version
/*
 * 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;
import org.bson.conversions.Bson;

/**
 * The options for a graphLookup aggregation pipeline stage
 *
 * @mongodb.driver.manual reference/operator/aggregation/graphLookup/ graphLookup
 * @mongodb.server.release 3.4
 * @since 3.4
 */
public final class GraphLookupOptions {
    private Integer maxDepth;
    private String depthField;
    private Bson restrictSearchWithMatch;

    /**
     * The name of the field in which to store the depth value
     *
     * @param field the field name
     * @return this
     */
    public GraphLookupOptions depthField(@Nullable final String field) {
        depthField = field;
        return this;
    }

    /**
     * @return the field name
     */
    @Nullable
    public String getDepthField() {
        return depthField;
    }

    /**
     * Specifies a maximum recursive depth for the $graphLookup.  This number must be non-negative.
     *
     * @param max the maximum depth
     * @return this
     */
    public GraphLookupOptions maxDepth(@Nullable final Integer max) {
        maxDepth = max;
        return this;
    }

    /**
     * @return the maximum depth
     */
    @Nullable
    public Integer getMaxDepth() {
        return maxDepth;
    }

    /**
     * A document specifying additional conditions for the recursive search
     *
     * @param filter the filter expression
     * @return this
     * @since 3.6
     */
    public GraphLookupOptions restrictSearchWithMatch(@Nullable final Bson filter) {
        restrictSearchWithMatch = filter;
        return this;
    }

    /**
     * @return the filter expression
     * @since 3.6
     */
    @Nullable
    public Bson getRestrictSearchWithMatch() {
        return restrictSearchWithMatch;
    }

    @Override
    public String toString() {
        StringBuilder stringBuilder = new StringBuilder()
            .append("GraphLookupOptions{");
        if (depthField != null) {
            stringBuilder.append("depthField='")
                         .append(depthField)
                         .append('\'');
            if (maxDepth != null) {
                stringBuilder.append(", ");
            }
        }
        if (maxDepth != null) {
            stringBuilder
                .append("maxDepth=")
                .append(maxDepth);
            if (restrictSearchWithMatch != null) {
                stringBuilder.append(", ");
            }
        }
        if (restrictSearchWithMatch != null) {
            stringBuilder
                .append("restrictSearchWithMatch=")
                .append(restrictSearchWithMatch);
        }

        return stringBuilder
            .append('}')
            .toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy