Enumeratum VS Scalaz

Compare Enumeratum vs Scalaz and see what are their differences.

Enumeratum

A type-safe, reflection-free, powerful enumeration implementation for Scala with exhaustive pattern match warnings and helpful integrations. (by lloydmeta)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Enumeratum Scalaz
4 3
1,177 4,654
- 0.1%
5.7 8.4
28 days ago 8 days ago
Scala Scala
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Enumeratum

Posts with mentions or reviews of Enumeratum. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-26.
  • How to implement `if-else if -else if -else` with cat effect IO in Scala?
    1 project | /r/scala | 16 May 2023
    I'm not sure I understand what Cats or cats-effect has to do with what you're trying to do. As far as I can tell, it sounds like what you're asking is simply "what's the best way to implement an enumerated type in Scala?" The best answer to that I'm aware of is Enumeratum.
  • Concise enumeration in Scala
    1 project | /r/scala | 16 Feb 2023
    In Scala 2: enumeratum which is, essentially, option 3 from your post.
  • Simple, Naïve, and Wrong: More than you wanted to know about Scala Case Classes
    3 projects | /r/scala | 26 Feb 2022
    And for exactly the same reasons one shouldn't override equals and hashCode in a case class, they shouldn't manually implement an enumeration and instead let a well-tested macro (2.x) or the compiler itself (3.x) handle reliably doing the automated code generation. The more code that is generated by the compiler, the smaller the defects, technical debt, and security vulnerability surface areas.
  • A survey of programming language enum support
    2 projects | /r/programming | 21 Feb 2021
    For Scala, check out the enumeratum library (https://github.com/lloydmeta/enumeratum). In my opinion its the best enum implementation I know of. It has all the features defined in the table, and the syntax is really clean. It even supports unique associated values (eg. unique String/Int keys).

Scalaz

Posts with mentions or reviews of Scalaz. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-29.
  • Going into year 2 of Software Development Foundation Degree, have a particular liking for OOP and SQL, any tips, info or pointers on where to go from there?
    2 projects | /r/cscareerquestions | 29 May 2023
    I'm sorry, but have you ever done functional programming for a real company, like in a functional programming language like Haskell, Scala, or F#? Have you ever used Scala cats or scalaz? Have you ever learned category theory and how to apply its abstractions in software? Listen u/judethedude2106 this person hasn't gone as far down the functional programming rabbit hole as I have. Beyond learning the basics like the difference between pure and impure functions, what are closures, what higher order functions are and the most common ones like .map, .filter, and .flatmap, the immutable collections like immutable linked lists and trees, and what a Monad is and common monads like those used for futures/promises, async programming, and Option (Some or None, which is used instead of null checking), the more advanced functional programming stuff like category theory based abstractions are totally useless for real jobs and is just a giant time suck. Don't waste years on functional programming, spend at most a few months on it and no more.
  • Typeclasses explained in Java
    3 projects | dev.to | 27 Jul 2022
    If I managed to gain you interest you can take a look at one of the following libraries like cats, scalaz for scala and vavr for java which contain type class definitions and implementations for common types.
  • In Search of the Best Functional Programming Back-End: 2021 Update
    4 projects | dev.to | 24 Jan 2021
    I’ve specifically had 2 job offers internally at my company because of this language. First with Cats and Scalaz and now with ZIO, Scala has taken the best parts of Haskell, the best parts of Scala, and made it really nice to work with. You can barely see the OOP leftovers.

What are some alternatives?

When comparing Enumeratum and Scalaz you can also consider the following projects:

Chimney - Scala library for boilerplate-free, type-safe data transformations

cats - Lightweight, modular, and extensible library for functional programming.

Scala Async - An asynchronous programming facility for Scala

Shapeless - Generic programming for Scala

Monocle - Optics library for Scala

Each - A macro library that converts native imperative syntax to scalaz's monadic expressions

ScalaTest - A testing tool for Scala and Java developers

better-files - Simple, safe and intuitive Scala I/O

Stateless Future - Asynchronous programming in fully featured Scala syntax.