ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Solving the Moshi enumeration problem using generics

Lucas
ProAndroidDev
Published in
5 min readNov 19, 2022

--

We should rather use a universal adapter. Photo by Castorly Stock on Pexels.

Why Android developers love Moshi

JSON representation of a Person
Converting the JSON into a Person data class

Parsing enums with Moshi

Adding an enum class to the properties of Person
Using Moshi’s EnumJsonAdapter to parse a Role
The value of role must match the name of the enum constant on the client; either Admin or Moderator

What if use numbers to represent the values instead?

The value of role is now represented as an integer
Associating an integer value with our Role enum class
A custom Moshi adapter that will map an integer into a Role enum constant

Creating a generic enum JSON adapter

Creating an IEnumValue interface to be implemented by our enums
Creating a GenericEnumFactory to avoid specifying a fromValueOrNull function on each of our enums

The magic of reified type parameters

Enum values cannot be accessed unless T is reified which is not supported in class level
A generic function that returns the generic JsonAdapter<T>
Adding the custom adapter for our enums in our Moshi.Builder definition

About the authors

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Lucas

Software Engineer @ Perry Street Software.

Responses (2)

Write a response