AudioManager
has a setParameters method that accepts a Key-Value pair in string representation ("parameter_name=parameter_value").
Internally, it calls native AudioSystem.setParameters
.
The only way to get a parameter value is if you know its name, by calling AudioManager.getParameters
method which calls the corresponding native method in `AudioSystem'.
Is there a way (using reflection or other techniques) to get a list of supported parameters (of course the result will be dependent on the device it is called on as it is platform-specific)?