class RubyProf::Profile

def measure_mode_string

def measure_mode_string
  case self.measure_mode
    when WALL_TIME
      "wall_time"
    when PROCESS_TIME
      "process_time"
    when ALLOCATIONS
      "allocations"
    when MEMORY
      "memory"
  end
end