Interface PrimitiveWrapper<B,​P>

    • Method Detail

      • getPrimitiveClass

        java.lang.Class<P> getPrimitiveClass()
        Returns the primitive class object of the primitive managed. Used for internal management. Should be implemented as return P.class; when implementing a wrapper creating objects of type P.
      • getInputPrimitiveClass

        java.lang.Class<B> getInputPrimitiveClass()
        Returns the primitive class object of the primitive used to create B. Used for internal management. Should be implemented as return B.class;.