Uses of Annotation Interface
com.google.common.primitives.ElementTypesAreNonnullByDefault

Package
Description
Static utilities for the eight primitive types and void, and value types for treating them as unsigned or storing them in immutable arrays.
  • Uses of ElementTypesAreNonnullByDefault in com.google.common.primitives

    Modifier and Type
    Class
    Description
    final class 
    Static utility methods pertaining to boolean primitives, that are not already found in either Boolean or Arrays.
    final class 
    Static utility methods pertaining to byte primitives, that are not already found in either Byte or Arrays, and interpret bytes as neither signed nor unsigned.
    final class 
    Static utility methods pertaining to char primitives, that are not already found in either Character or Arrays.
    final class 
    Static utility methods pertaining to double primitives, that are not already found in either Double or Arrays.
    (package private) class 
    Holder for web specializations of methods of Doubles.
    final class 
    Static utility methods pertaining to float primitives, that are not already found in either Float or Arrays.
    (package private) class 
    Holder for web specializations of methods of Floats.
    final class 
    An immutable array of double values, with an API resembling List.
    final class 
    An immutable array of int values, with an API resembling List.
    final class 
    An immutable array of long values, with an API resembling List.
    final class 
    Static utility methods pertaining to int primitives, that are not already found in either Integer or Arrays.
    (package private) class 
    Holder for web specializations of methods of Ints.
    final class 
    Static utility methods pertaining to long primitives, that are not already found in either Long or Arrays.
    (package private) final class 
    A string to be parsed as a number and the radix to interpret it in.
    final class 
    Contains static utility methods pertaining to primitive types and their corresponding wrapper types.
    final class 
    Static utility methods pertaining to short primitives, that are not already found in either Short or Arrays.
    (package private) class 
    Holder for web specializations of methods of Shorts.
    final class 
    Static utility methods pertaining to byte primitives that interpret values as signed.
    final class 
    Static utility methods pertaining to byte primitives that interpret values as unsigned (that is, any negative value b is treated as the positive value 256 + b).
    final class 
    A wrapper class for unsigned int values, supporting arithmetic operations.
    final class 
    Static utility methods pertaining to int primitives that interpret values as unsigned (that is, any negative value x is treated as the positive value 2^32 + x).
    final class 
    A wrapper class for unsigned long values, supporting arithmetic operations.
    final class 
    Static utility methods pertaining to long primitives that interpret values as unsigned (that is, any negative value x is treated as the positive value 2^64 + x).