@CheckReturnValue public final class Primitives extends Object
| Modifier and Type | Method and Description | 
|---|---|
| static Set<Class<?>> | allPrimitiveTypes()Returns an immutable set of all nine primitive types (including  void). | 
| static Set<Class<?>> | allWrapperTypes()Returns an immutable set of all nine primitive-wrapper types (including
  Void). | 
| static boolean | isWrapperType(Class<?> type) | 
| static <T> Class<T> | unwrap(Class<T> type)Returns the corresponding primitive type of  typeif it is a
 wrapper type; otherwise returnstypeitself. | 
| static <T> Class<T> | wrap(Class<T> type)Returns the corresponding wrapper type of  typeif it is a primitive
 type; otherwise returnstypeitself. | 
public static Set<Class<?>> allPrimitiveTypes()
void). Note that a simpler way to test whether a Class instance
 is a member of this set is to call Class.isPrimitive().public static Set<Class<?>> allWrapperTypes()
Void).public static boolean isWrapperType(Class<?> type)
Class.isPrimitive()public static <T> Class<T> wrap(Class<T> type)
type if it is a primitive
 type; otherwise returns type itself. Idempotent.
 
     wrap(int.class) == Integer.class
     wrap(Integer.class) == Integer.class
     wrap(String.class) == String.class
 Copyright © 2010-2015. All Rights Reserved.