* @return The specified EQPreset. NULL, if there is no existing EQPreset with the specified name.
* @throws JitcaException if an error occurs.
*/
private EQPreset loadEQPresetFromiTunes(String eqName){
IITEQPresetCollection itEQPresetCollection = this.iTunes.getEQPresets();
IITEQPreset itEQPreset = itEQPresetCollection.itemByName(eqName);
if (itEQPreset == null) return null;
EQPreset eqPreset = new EQPresetImpl(itEQPreset);
this.addEQPreset(eqPreset);
return eqPreset;
}