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

org.killbill.commons.utils.Primitives Maven / Gradle / Ivy

/*
 * Copyright 2020-2022 Equinix, Inc
 * Copyright 2014-2022 The Billing Project, LLC
 *
 * The Billing Project 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.killbill.commons.utils;

import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;

/**
 * Verbatim copy to guava's Primitives (v.31.0.1). See more
 * about this.
 */
public final class Primitives {

    /** A map from primitive types to their corresponding wrapper types. */
    private static final Map, Class> PRIMITIVE_TO_WRAPPER_TYPE;

    static {
        final Map, Class> primToWrap = new LinkedHashMap<>(16);
        final Map, Class> wrapToPrim = new LinkedHashMap<>(16);

        add(primToWrap, wrapToPrim, boolean.class, Boolean.class);
        add(primToWrap, wrapToPrim, byte.class, Byte.class);
        add(primToWrap, wrapToPrim, char.class, Character.class);
        add(primToWrap, wrapToPrim, double.class, Double.class);
        add(primToWrap, wrapToPrim, float.class, Float.class);
        add(primToWrap, wrapToPrim, int.class, Integer.class);
        add(primToWrap, wrapToPrim, long.class, Long.class);
        add(primToWrap, wrapToPrim, short.class, Short.class);
        add(primToWrap, wrapToPrim, void.class, Void.class);

        PRIMITIVE_TO_WRAPPER_TYPE = Collections.unmodifiableMap(primToWrap);
    }

    private static void add(final Map, Class> forward, final Map, Class> backward, final Class key, final Class value) {
        forward.put(key, value);
        backward.put(value, key);
    }


    /**
     * Returns the corresponding wrapper type of {@code type} if it is a primitive type; otherwise
     * returns {@code type} itself. Idempotent.
     *
     * 
     *     wrap(int.class) == Integer.class
     *     wrap(Integer.class) == Integer.class
     *     wrap(String.class) == String.class
     * 
*/ public static Class wrap(final Class type) { Preconditions.checkNotNull(type); // cast is safe: long.class and Long.class are both of type Class @SuppressWarnings("unchecked") final Class wrapped = (Class) PRIMITIVE_TO_WRAPPER_TYPE.get(type); return (wrapped == null) ? type : wrapped; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy