Get field names list from case class

Scala

Scala Problem Overview


I need to get only field names of case class. I'm not interested in its values. I thought getClass.getDeclaredFields.map(_.getName) would return a list of field names.

scala> case class User(id: Int, name: String)
defined class User

scala> User.getClass.getDeclaredFields
res14: Array[java.lang.reflect.Field] = Array(public static final User$ User$.MODULE$)

scala> User.getClass.getDeclaredFields.toList
res15: List[java.lang.reflect.Field] = List(public static final User$ User$.MODULE$)

scala> val user = User(1, "dude")
user: User = User(1,dude)

scala> user.getClass.getDeclaredFields.toList
res16: List[java.lang.reflect.Field] = List(private final int User.id, private final java.lang.String User.name)

What is this User$.MODULE$? What's that?

Method getDeclaredFields works fine when you have an instance of a case class, but I don't want to create an instance in order to get only fields.

Why this isn't true: User.getClass.getDeclaredFields.map(_.getName) == List("id", "name")?

Scala Solutions


Solution 1 - Scala

By using User.getClass, you are referring to the class companion object that Scala by default creates for the case class, and not the case class itself. To get the class object of the case class, use classOf[User].

Alternatively, you could use Scala's reflection API to get the metadata of a case class, which gives you much more information:

import scala.reflect.runtime.universe._

def classAccessors[T: TypeTag]: List[MethodSymbol] = typeOf[T].members.collect {
  case m: MethodSymbol if m.isCaseAccessor => m
}.toList

Test in sbt console:

scala> case class User(name: String, age: Int)
defined class User

scala> classAccessors[User]
res0: List[reflect.runtime.universe.MethodSymbol] = List(value age, value name)

Solution 2 - Scala

Starting Scala 2.13, case classes (which are an implementation of Product) are now provided with a productElementNames method which returns an iterator over their field's names.

From an instance of the case class (let's say case class Person(name: String, age: Int)), one can retrieve a List of its fields:

Person("hello", 28).productElementNames.toList
// List[String] = List(name, age)

Solution 3 - Scala

User.getClass does not give you the equivalent of User.class in Java, but it gives you the class of the companion object of the User class. You can retrieve the Class object of User with classOf[User].

edit: Oh and the User$.MODULE$ is an accessor to the singleton instance that is used internally. Think of it as the equivalent to MyClass.INSTANCE when you are writing singletons in Java.

Solution 4 - Scala

If you are also wondering why some Scala-reflection code is not compiling any more, here is a crude solution with the good ol' Java reflection (which, apparently, has been working in exactly the same way since approx. year 1300 BC):

case class User(b: Int, a: String)
val u = User(42, "JohnDoe")

classOf[User]
.getDeclaredFields
.map{ f => 
  f.setAccessible(true)
  val res = (f.getName, f.get(u))
  f.setAccessible(false)
  res
}

It will get both the names and the values:

Array((b,42), (a,bob))

The order seems to be the same as in the constructor.

Solution 5 - Scala

Following Andrey Tyukin solution, to get only the list of fields in Scala 2.12:

val fields: List[String] = classOf[Dummy].getDeclaredFields.map(_.getName).toList

Solution 6 - Scala

If you are using Spark, this the easiest way to get fields:

val cols = Seq(CaseClassModel()).toDF().columns

Note: The CaseClassModel should have fields initialized

Solution 7 - Scala

Extracting case class field names with Shapeless

LabelledGeneric Aux pattern enter image description here

https://svejcar.dev/posts/2019/10/22/extracting-case-class-field-names-with-shapeless/

> "Scala 2.13 added new method, productElementNames, into the Product trait"

... but the Shapeless based approach is recommended by author

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAlexander KondaurovView Question on Stackoverflow
Solution 1 - ScalaDia KharratView Answer on Stackoverflow
Solution 2 - ScalaXavier GuihotView Answer on Stackoverflow
Solution 3 - ScaladrexinView Answer on Stackoverflow
Solution 4 - ScalaAndrey TyukinView Answer on Stackoverflow
Solution 5 - ScalaJavier MontónView Answer on Stackoverflow
Solution 6 - ScalaDevendra ParhateView Answer on Stackoverflow
Solution 7 - ScalaSemanticBeengView Answer on Stackoverflow