I have a singleton objet with 100 different case classes. For example:
object Foo {
case class Bar1 {
...
}
...
case class Bar100 {
...
}
}
I would like to be able to iterate over each of the case class. Something like getting all the case classes in a Seq and then being able to map over it. (map with a polymorphic function for example)
Is it possible using reflection? If yes how? And what are the drawbacks of using reflection here over hard coding a sequence with all the case classes.
Foo.getClass.getDeclaredClasses
gives you all the classes declared insideFoo
. Because they are case classes, each also defines a companion object (which is also a class), so you'll need to filter them out:Foo.getClass.getDeclaredClasses.filterNot(_.endsWith("$"))
Reflection is slow, but if you are only going to do it once (no reason to do it more than once, because you'll alway be getting the same result), it's not really an issue.
A bigger problem is that I can't really imagine a "polymorphic function" that would let you do anything useful with this information without some extreme hacking.