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

com.landawn.abacus.util.LazyNavigableMap Maven / Gradle / Ivy

Go to download

A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.

There is a newer version: 2.1.12
Show newest version
/*
 * Copyright (c) 2020, Haiyang Li.
 *
 * 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.landawn.abacus.util;

import java.util.NavigableMap;
import java.util.NavigableSet;

import com.landawn.abacus.util.function.Supplier;

public class LazyNavigableMap extends LazySortedMap implements NavigableMap {
    protected NavigableMap navigableMap;

    protected LazyNavigableMap(final Supplier> supplier) {
        super(supplier);
    }

    @Override
    protected void init() {
        if (isInitialized == false) {
            super.init();
            navigableMap = (NavigableMap) map;
        }
    }

    public static  LazyNavigableMap of(final NavigableMapSupplier supplier) {
        return new LazyNavigableMap(supplier);
    }

    /**
     * 
     * @param 
     * @param 
     * @param supplier
     * @return
     * @deprecated throws {@code UnsupportedOperationException}
     * @throws UnsupportedOperationException
     */
    @Deprecated
    public static  LazySortedMap of(final SortedMapSupplier supplier) throws UnsupportedOperationException {
        throw new UnsupportedOperationException();
    }

    @Override
    public Entry lowerEntry(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.lowerEntry(key);
    }

    @Override
    public K lowerKey(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.lowerKey(key);
    }

    @Override
    public Entry floorEntry(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.floorEntry(key);
    }

    @Override
    public K floorKey(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.floorKey(key);
    }

    @Override
    public Entry ceilingEntry(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.ceilingEntry(key);
    }

    @Override
    public K ceilingKey(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.ceilingKey(key);
    }

    @Override
    public Entry higherEntry(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.higherEntry(key);
    }

    @Override
    public K higherKey(K key) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.higherKey(key);
    }

    @Override
    public Entry firstEntry() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.firstEntry();
    }

    @Override
    public Entry lastEntry() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.lastEntry();
    }

    @Override
    public Entry pollFirstEntry() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.pollFirstEntry();
    }

    @Override
    public Entry pollLastEntry() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.pollLastEntry();
    }

    @Override
    public NavigableMap descendingMap() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.descendingMap();
    }

    @Override
    public NavigableSet navigableKeySet() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.navigableKeySet();
    }

    @Override
    public NavigableSet descendingKeySet() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.descendingKeySet();
    }

    @Override
    public NavigableMap subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.subMap(fromKey, fromInclusive, toKey, toInclusive);
    }

    @Override
    public NavigableMap headMap(K toKey, boolean inclusive) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.headMap(toKey, inclusive);
    }

    @Override
    public NavigableMap tailMap(K fromKey, boolean inclusive) {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.tailMap(fromKey, inclusive);
    }

    @Override
    public int hashCode() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (isInitialized == false) {
            init();
        }

        return obj instanceof LazyNavigableMap && navigableMap.equals(obj);
    }

    @Override
    public String toString() {
        if (isInitialized == false) {
            init();
        }

        return navigableMap.toString();
    }

    public static interface NavigableMapSupplier extends Supplier> {

        @Override
        NavigableMap get();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy