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

com.google.cloud.firestore.collection.LLRBEmptyNode Maven / Gradle / Ivy

There is a newer version: 3.29.1
Show newest version
/*
 * Copyright 2017 Google LLC
 *
 * 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.google.cloud.firestore.collection;

import com.google.api.core.InternalApi;
import java.util.Comparator;

// Note: This package is copied from https://github.com/firebase/firebase-admin-java/tree/master/
// src/main/java/com/google/firebase/database/collection
@InternalApi
public class LLRBEmptyNode implements LLRBNode {

  private static final LLRBEmptyNode INSTANCE = new LLRBEmptyNode();

  @SuppressWarnings("unchecked")
  public static  LLRBEmptyNode getInstance() {
    return INSTANCE;
  }

  private LLRBEmptyNode() {}

  @Override
  public LLRBNode copy(
      K key, V value, Color color, LLRBNode left, LLRBNode right) {
    return this;
  }

  @Override
  public LLRBNode insert(K key, V value, Comparator comparator) {
    return new LLRBRedValueNode<>(key, value);
  }

  @Override
  public LLRBNode remove(K key, Comparator comparator) {
    return this;
  }

  @Override
  public boolean isEmpty() {
    return true;
  }

  @Override
  public boolean isRed() {
    return false;
  }

  @Override
  public K getKey() {
    return null;
  }

  @Override
  public V getValue() {
    return null;
  }

  @Override
  public LLRBNode getLeft() {
    return this;
  }

  @Override
  public LLRBNode getRight() {
    return this;
  }

  @Override
  public LLRBNode getMin() {
    return this;
  }

  @Override
  public LLRBNode getMax() {
    return this;
  }

  @Override
  public int size() {
    return 0;
  }

  @Override
  public void inOrderTraversal(NodeVisitor visitor) {
    // No-op
  }

  @Override
  public boolean shortCircuitingInOrderTraversal(ShortCircuitingNodeVisitor visitor) {
    // No-op
    return true;
  }

  @Override
  public boolean shortCircuitingReverseOrderTraversal(ShortCircuitingNodeVisitor visitor) {
    // No-op
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy