1 /* 2 * Copyright (C) 2011 Google Inc. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except 5 * in compliance with the License. You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software distributed under the License 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 11 * or implied. See the License for the specific language governing permissions and limitations under 12 * the License. 13 */ 14 15 package com.google.caliper.options; 16 17 import com.google.caliper.util.ShortDuration; 18 import com.google.common.collect.ImmutableMap; 19 import com.google.common.collect.ImmutableSet; 20 import com.google.common.collect.ImmutableSetMultimap; 21 22 import java.io.File; 23 24 public interface CaliperOptions { benchmarkClassName()25 String benchmarkClassName(); benchmarkMethodNames()26 ImmutableSet<String> benchmarkMethodNames(); vmNames()27 ImmutableSet<String> vmNames(); userParameters()28 ImmutableSetMultimap<String, String> userParameters(); vmArguments()29 ImmutableSetMultimap<String, String> vmArguments(); configProperties()30 ImmutableMap<String, String> configProperties(); instrumentNames()31 ImmutableSet<String> instrumentNames(); trialsPerScenario()32 int trialsPerScenario(); timeLimit()33 ShortDuration timeLimit(); runName()34 String runName(); printConfiguration()35 boolean printConfiguration(); dryRun()36 boolean dryRun(); caliperDirectory()37 File caliperDirectory(); caliperConfigFile()38 File caliperConfigFile(); 39 } 40