Cisco Cisco Jabber Voice for Android Licensing Information

Page of 304
             Open Source Used In Cisco Jabber for Android 11.8 Licensing Information 11.8
                                           58
1.11 Gson 2.3.1 
1.11.1 Available under license : 
/*
* Copyright (C) 2008 Google Inc.
*
* 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.gson.internal;
 
 
import java.lang.reflect.Type;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
 
/**
* Contains static utility methods pertaining to primitive types and their
* corresponding wrapper types.
*
* @author Kevin Bourrillion
*/
public final class Primitives {
 private Primitives() {}
 
 /** A map from primitive types to their corresponding wrapper types. */
 private static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE;
 
 /** A map from wrapper types to their corresponding primitive types. */
 private static final Map<Class<?>, Class<?>> WRAPPER_TO_PRIMITIVE_TYPE;
 
 // Sad that we can't use a BiMap. :(
 
 static {
   Map<Class<?>, Class<?>> primToWrap = new HashMap<Class<?>, Class<?>>(16);
   Map<Class<?>, Class<?>> wrapToPrim = new HashMap<Class<?>, Class<?>>(16);