Ejemplo n.º 1
0
 /**
  * Sets the configured performance options
  *
  * @see PerformanceOptionsEnum for a list of available options
  */
 public void setPerformanceOptions(PerformanceOptionsEnum... thePerformanceOptions) {
   Collection<PerformanceOptionsEnum> asList = null;
   if (thePerformanceOptions != null) {
     asList = Arrays.asList(thePerformanceOptions);
   }
   setPerformanceOptions(asList);
 }