Are there any best-practice guidelines on when to use case classes vs extending Enumeration in Scala?
They seem to offer some of the same benefits.
|
Are there any best-practice guidelines on when to use case classes vs extending Enumeration in Scala? They seem to offer some of the same benefits. |
|||||
|
|
One big difference is that
Then you can do:
This is useful when wishing to persist enumerations (for example, to a database) or create them from data residing in files. However, I find in general that enumerations are a bit clumsy in Scala and have the feel of an awkward add-on, so I now tend to use
So now I have the advantage of...
To follow up on the other answers here, the main drawbacks of
|
|||||||
|
|
Case objects already return their name for their toString methods, so passing it in separately is unnecessary. Here is a version similar to jho's (convenience methods omitted for brevity):
Objects are lazy; by using vals instead we can drop the list but have to repeat the name:
If you don't mind some cheating, you can pre-load your enumeration values using the reflection API or something like Google Reflections. Non-lazy case objects give you the cleanest syntax:
Nice and clean, with all the advantages of case classes and Java enumerations. Personally, I define the enumeration values outside of the object to better match idiomatic Scala code:
|
|||||||
|
|
The advantages of using case classes over Enumerations are:
The advantages of using Enumerations instead of case classes are:
So in general, if you just need a list of simple constants by name, use enumerations. Otherwise, if you need something a bit more complex or want the extra safety of the compiler telling you if you have all matches specified, use case classes. |
|||
|
|
|
UPDATE: The code below has a bug, described here. The test program below works, but if you were to use DayOfWeek.Mon (for example) before DayOfWeek itself, it would fail because DayOfWeek has not been initialized (use of an inner object does not cause an outer object to be initialized). You can still use this code if you do something like If you want
then the following may be of interest. Feedback welcome. In this implementation there are abstract Enum and EnumVal base classes, which you extend. We'll see those classes in a minute, but first, here's how you would define an enum:
Note that you have to use each enum value (call its apply method) to bring it to life. [I wish objects weren't lazy unless I specifically ask for them to be. I think.] We could of course add methods/data to DayOfWeek, Val, or the individual case objects if we so desired. And here's how you would use such an enum:
Here's what you get when you compile it:
You can replace "day match" with "( day: @unchecked ) match" where you don't want such warnings, or simply include a catch-all case at the end. When you run the above program, you get this output:
Note that since the List and Maps are immutable, you can easily remove elements to create subsets, without breaking the enum itself. Here is the Enum class itself (and EnumVal within it):
And here is a more advanced use of it which controls the IDs and adds data/methods to the Val abstraction and to the enum itself:
|
|||||||||||||
|
|
Another disadvantage of case classes versus Enumerations when you will need to iterate or filter across all instances. This is a built-in capability of Enumeration (and Java enums as well) while case classes don't automatically support such capability. |
|||||||||
|
|
I've seen various versions of making a case class mimic an enumeration. Here is my version:
Which allows you to construct case classes that look like the following:
Maybe someone could come up with a better trick than simply adding a each case class to the list like I did. This was all I could come up with at the time. |
|||
|
|
|
I've been going back and forth on these two options the last few times I've needed them. Up until recently, my preference has been for the sealed trait/case object option. 1) Scala Enumeration Declaration
2) Sealed Traits + Case Objects
While neither of these really meet all of what a java enumeration gives you, below are the pros and cons: Scala Enumeration Pros: -Functions for instantiating with option or directly assuming accurate (easier when loading from a persistent store) -Iteration over all possible values is supported Cons: -Compilation warning for non-exhaustive search is not supported (makes pattern matching less ideal) Case Objects/Sealed traits Pros: -Using sealed traits, we can pre-instantiate some values while others can be injected at creation time -full support for pattern matching (apply/unapply methods defined) Cons: -Instantiating from a persistent store - you often have to use pattern matching here or define your own list of all possible 'enum values' What ultimately made me change my opinion was something like the following snippet:
The
So I think my preference going forward is to use Enumerations when the values are intended to be accessed from a repository and case objects/sealed traits otherwise. |
|||
|
|