After reading a lot about the wrappers' prebuilt cache, I was wondering if it would be very effective to use them as an alternative to the declaration of global constants.
That is, instead of:
public static final one = 1;
replace it with
Integer var = 1
sentence that would return the pre-built instance of Integer with value 1. The question is, would it be effective? or would it be the same? Thanks in advance