あなたが本当にFieldName
私は考えることができる最善のインスタンスが使用している場合ToolBox
:.tree.children.tail
で
scala> case class FieldName(field: String) extends scala.annotation.StaticAnnotation
defined class FieldName
scala> @FieldName("foo") trait Foo
defined trait Foo
scala> import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe._
scala> val annotation = symbolOf[Foo].annotations.head
annotation: reflect.runtime.universe.Annotation = FieldName("foo")
scala> import scala.tools.reflect.ToolBox
import scala.tools.reflect.ToolBox
scala> val tb = runtimeMirror(getClass.getClassLoader).mkToolBox()
tb: scala.tools.reflect.ToolBox[reflect.runtime.universe.type] = [email protected]
scala> tb.eval(tb.untypecheck(annotation.tree)).asInstanceOf[FieldName]
res10: FieldName = FieldName(foo)
あなたが実際のインスタンスを作成せずにFieldName
に渡された引数にアクセスすることができます。あなただけのすべてのFieldName
注釈をしたいし、その値を抽出する場合
scala> annotation.tree.children.tail.map{ case Literal(Constant(field)) => field }
res11: List[Any] = List(foo)
は、あなたがこれを行うことができます。
scala> val fields = symbolOf[Foo].annotations.withFilter(
| a => a.tree.tpe <:< typeOf[FieldName]
|).flatMap(
| a => a.tree.children.tail.map{ case Literal(Constant(field)) => field }
|)
fields: List[Any] = List(foo)
うん。おっとっと。一定。 – Reactormonk