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

org.apache.commons.text.lookup.FunctionStringLookup Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.commons.text.lookup;

import java.util.Map;
import java.util.Objects;
import java.util.function.Function;

/**
 * A function-based lookup where the request for a lookup is answered by applying that function with a key.
 *
 * @param  A function's input type
 *
 * @since 1.9
 */
final class FunctionStringLookup extends AbstractStringLookup {

    /**
     * Creates a new instance backed by a Function.
     *
     * @param  the function's input type
     * @param function the function, may be null.
     * @return a new instance backed by the given function.
     */
    static  FunctionStringLookup on(final Function function) {
        return new FunctionStringLookup<>(function);
    }

    /**
     * Creates a new instance backed by a Map. Used by the default lookup.
     *
     * @param  the map's value type.
     * @param map the map of keys to values, may be null.
     * @return a new instance backed by the given map.
     */
    static  FunctionStringLookup on(final Map map) {
        return on(map::get);
    }

    /**
     * Function.
     */
    private final Function function;

    /**
     * Creates a new instance backed by a Function.
     *
     * @param function the function, may be null.
     */
    private FunctionStringLookup(final Function function) {
        this.function = function;
    }

    /**
     * Looks up a String key by applying the function.
     * 

* If the function is null, then null is returned. The function result object is converted to a string using * toString(). *

* * @param key the key to be looked up, may be null. * @return The function result as a string, may be null. */ @Override public String lookup(final String key) { if (function == null) { return null; } final V obj; try { obj = function.apply(key); } catch (final SecurityException | NullPointerException | IllegalArgumentException e) { // Squelched. All lookup(String) will return null. // Could be a ConcurrentHashMap and a null key request return null; } return Objects.toString(obj, null); } @Override public String toString() { return super.toString() + " [function=" + function + "]"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy