All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.bdp.util.MiscUtil.scala Maven / Gradle / Ivy

/*
 * Copyright DataStax, Inc.
 *
 * Please see the included license file for details.
 */

package com.datastax.bdp.util

import scala.reflect.runtime.universe

object MiscUtil {
  def objectOrClassName(o: AnyRef): String = {
    val mirror = universe.runtimeMirror(o.getClass.getClassLoader)
    mirror.reflect(o).symbol.asClass.fullName
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy