You've been asking questions about this problem for a number of days. I think the root of your problems is that you are trying to get realtime performance out of Java platforms that are simply not designed to provide it.
If you want real-time performance (in the true sense of the word), you need a Java VM that implement the RTSJ realtime extensions. This page that lists some implementations. Note that to get realtime performance at the Java application level, you also need to be running on a real-time capable OS platform.
On the other hand, if you just want low-pause garbage collection without any strong realtime performance guarantees, then Oracle's GC tuning documents explain how to do this. See Chuck Fricano's answer.
But beware that there limits to what can be achieved this way. In particular, if your application stresses the GC too much, it won't be able to meet your goals for pause times. And the optimal settings for the tuning parameters are likely to be platform / hardware specific, as well as application dependent.
There are no easy answers.
And there is certainly no one-size-fits-all configuration to minimize latency. Not even for a specific JVM version, operating system and hardware platform.