In Java there is no operator overriding like i C++ so I can\'t figure out how to implement a boxing/unboxing for my own class.
For example it\'s possibile to use box
It's not possible to implement automatic boxing and unboxing for your own class - auto(un)boxing is a language feature, implemented in the Java compiler.