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

org.modelmapper.internal.util.Primitives Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
/*
 * Copyright 2011 the original author or authors.
 *
 * 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 org.modelmapper.internal.util;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

/**
 * Utility methods for working with primitives.
 * 
 * @author Jonathan Halterman
 */
public final class Primitives {
  private static Map, Class> primitiveToWrapper;
  private static Map, Class> wrapperToPrimitive;
  private static Map, Object> defaultValue;
  private static Set primitiveWrapperInternalNames;

  static {
    primitiveToWrapper = new HashMap, Class>();
    primitiveToWrapper.put(Boolean.TYPE, Boolean.class);
    primitiveToWrapper.put(Character.TYPE, Character.class);
    primitiveToWrapper.put(Byte.TYPE, Byte.class);
    primitiveToWrapper.put(Short.TYPE, Short.class);
    primitiveToWrapper.put(Integer.TYPE, Integer.class);
    primitiveToWrapper.put(Long.TYPE, Long.class);
    primitiveToWrapper.put(Float.TYPE, Float.class);
    primitiveToWrapper.put(Double.TYPE, Double.class);

    wrapperToPrimitive = new HashMap, Class>();
    wrapperToPrimitive.put(Boolean.class, Boolean.TYPE);
    wrapperToPrimitive.put(Character.class, Character.TYPE);
    wrapperToPrimitive.put(Byte.class, Byte.TYPE);
    wrapperToPrimitive.put(Short.class, Short.TYPE);
    wrapperToPrimitive.put(Integer.class, Integer.TYPE);
    wrapperToPrimitive.put(Long.class, Long.TYPE);
    wrapperToPrimitive.put(Float.class, Float.TYPE);
    wrapperToPrimitive.put(Double.class, Double.TYPE);

    defaultValue = new HashMap, Object>();
    defaultValue.put(Boolean.TYPE, Boolean.FALSE);
    defaultValue.put(Character.TYPE, Character.valueOf('\u0000'));
    defaultValue.put(Byte.TYPE, Byte.valueOf((byte) 0));
    defaultValue.put(Short.TYPE, Short.valueOf((short) 0));
    defaultValue.put(Integer.TYPE, Integer.valueOf(0));
    defaultValue.put(Long.TYPE, Long.valueOf(0L));
    defaultValue.put(Float.TYPE, Float.valueOf(0.0f));
    defaultValue.put(Double.TYPE, Double.valueOf(0.0d));

    primitiveWrapperInternalNames = new HashSet();
    for (Class wrapper : wrapperToPrimitive.keySet())
      primitiveWrapperInternalNames.add(wrapper.getName().replace('.', '/'));
  }

  private Primitives() {
  }

  /**
   * Returns the boxed default value for {@code type} if {@code type} is a primitive, else null.
   */
  @SuppressWarnings("unchecked")
  public static  T defaultValue(Class type) {
    return type.isPrimitive() ? (T) defaultValue.get(type) : null;
  }

  /**
   * Returns the boxed default value for {@code type} if {@code type} is a primitive wrapper.
   */
  @SuppressWarnings("unchecked")
  public static  T defaultValueForWrapper(Class wrapper) {
    Class primitiveType = primitiveFor(wrapper);
    return primitiveType == null ? null : (T) defaultValue.get(primitiveType);
  }

  /**
   * Returns true if {@code type} is a primitive or a primitive wrapper.
   */
  public static boolean isPrimitive(Class type) {
    return type.isPrimitive() || isPrimitiveWrapper(type);
  }

  /**
   * Returns true if {@code type} is a primitive wrapper.
   */
  public static boolean isPrimitiveWrapper(Class type) {
    return wrapperToPrimitive.containsKey(type);
  }

  /**
   * Returns whether the {@code name} is an internal class name of a primitive wrapper.
   */
  public static boolean isPrimitiveWrapperInternalName(String name) {
    return primitiveWrapperInternalNames.contains(name);
  }

  /**
   * Returns the primitive type for the {@code wrapper}, else returns {@code null} if
   * {@code wrapper} is not a primitive wrapper.
   */
  public static Class primitiveFor(Class wrapper) {
    return wrapperToPrimitive.get(wrapper);
  }

  /**
   * Returns the primitive wrapper for {@code type}, else returns {@code type} if {@code type} is
   * not a primitive.
   */
  public static Class wrapperFor(Class type) {
    return type.isPrimitive() ? primitiveToWrapper.get(type) : type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy