Get the name of an variable, function, class member, or type as a string--at compile-time!
Inspired by the nameof operator in C#
Used to obtain the simple (unqualified) string name of a variable, type, or member. When reporting errors in code, hooking up model-view-controller (MVC) links, firing property changed events, etc., you often want to capture the string name of a method. Using nameof helps keep your code valid when renaming definitions. Before you had to use string literals to refer to definitions, which is brittle when renaming code elements because tools do not know to check these string literals.
Add the library as "provided", because it's only needed during compilation and not at runtime:
libraryDependencies += "com.github.dwickern" %% "scala-nameof" % "2.0.0" % "provided"
Now you can use nameOf
to get the name of a variable or class member:
import com.github.dwickern.macros.NameOf._
case class Person(name: String, age: Int)
def toMap(person: Person) = Map(
nameOf(person.name) -> person.name,
nameOf(person.age) -> person.age
)
// compiles to:
def toMap(person: Person) = Map(
"name" -> person.name,
"age" -> person.age
)
To get the name of a function:
import com.github.dwickern.macros.NameOf._
def startCalculation(value: Int): Unit = {
println(s"Entered ${nameOf(startCalculation _)}")
}
// compiles to:
def startCalculation(value: Int): Unit = {
println(s"Entered startCalculation")
}
Without having an instance of the type:
import com.github.dwickern.macros.NameOf._
case class Person(name: String, age: Int)
println(nameOf[Person](_.age))
// compiles to:
println("age")
You can also use nameOfType
to get the unqualified name of a type:
import com.github.dwickern.macros.NameOf._
println(nameOf[java.lang.String])
// compiles to:
println("String")
And qualifiedNameOfType
to get the qualified name:
import com.github.dwickern.macros.NameOf._
println(qualifiedNameOfType[java.lang.String])
// compiles to:
println("java.lang.String")
To run tests for all compilation targets:
sbt +test
To publish to your local ivy repository:
sbt +publishLocal
To publish to maven central (requires authorization):
sbt release
See LICENSE (MIT).