You can't, basically. Everything is passed by value in Java, and there's no way of changing that.
The closest you can come is to create your own generic mutable wrapper type, or use an array of length 1. The wrapper approach makes it much clearer what you're doing, but it's less efficient. You can use AtomicReference<V> as a wrapper type if you want, although its use implies that you're concerned about concurrency when you probably aren't.
For wrappers of primitive types, you could either use the Integer, Long etc classes, or you could write an individual specific wrapper type for each primitive. (Again, the latter would be slightly more efficient.)
Fundamentally though, you should try to design your code not to need this. I very rarely find it a useful technique. If you find yourself wanting to do it very often, you may be "thinking" in a different language...