65

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")?

Brian McCutchon
  • 8,354
  • 3
  • 33
  • 45
Alexander Kondaurov
  • 3,677
  • 5
  • 42
  • 64

7 Answers7

76

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)
Dia Kharrat
  • 5,948
  • 3
  • 32
  • 43
  • 2
    They appear to come back in lexo order. Is there any way to make them come back in the order they are declared in the code? – samthebest May 19 '16 at 08:58
  • 5
    This answer has a thread which explains how to get in order: http://stackoverflow.com/a/16079804/1586965 – samthebest Jun 17 '16 at 09:58
47

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)
Xavier Guihot
  • 54,987
  • 21
  • 291
  • 190
  • 17
    That's great! oh i'm on spark .. 2.13 is in spark 4 that will be 3 years out – WestCoastProjects Dec 07 '18 at 22:55
  • 7
    The frustrating thing with approach is that you need an instance of the type in question, which is not quite ideal in certain situations – Gabriel Asman Sep 24 '19 at 13:10
  • Also, it's runtime evaluated to a List, which makes it less useful, when trying to work with Tuple-based logic - despite the size of the list being determined at compile time. – Rick Moritz Aug 31 '23 at 09:23
15

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
Javier Montón
  • 4,601
  • 3
  • 21
  • 29
11

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.

drexin
  • 24,225
  • 4
  • 67
  • 81
10

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.

Andrey Tyukin
  • 43,673
  • 4
  • 57
  • 93
  • This approach is good, but beware if you have any member fields not in the default constructor, `.getDeclaredFields` will return those as well and not differentiate between the two – NateH06 Aug 15 '19 at 17:00
  • @Andrey Tyukin, how to use it in a generic method def getFields[T]() : List[Field] = ??? – Md. Alim Ul Karim May 07 '20 at 16:25
3

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

Devendra Parhate
  • 135
  • 1
  • 2
  • 12
2

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

SemanticBeeng
  • 937
  • 1
  • 9
  • 15