Codementor Events

Android Enums: Good or Bad?

Published Jun 29, 2016Last updated Jan 18, 2017
Android Enums: Good or Bad?

Android developers often wonder the efficiency of ‘Java Enums’ in their Android application. Are Java Enums actually usable? Are they actually good or bad? Before getting into it’s usability let’s see how Enums (short for ‘Enumeration’) works:

As written by Oracle, ‘An enum type is a special data type that enables for a variable to be a set of predefined constants.’ What this means is, the variable is assigned a constant value within a set of values within that Enum type. Let’s see an example:

public enum Snacks {
  NACHOS,
  FRIES,
  COOKIES;
}

So now each item is a part of the enum set Snacks with a static constant value. But how can we really make sure? Let’s do some ‘hacky’ stuff!

Compiling the above enum Snacks:

javac Snacks.java

and disassembling resulting class file with javap:

javap Snacks.class

gives the following:

public final class Snacks extends java.lang.Enum<Snacks>{
    public static final Snacks NACHOS;
    public static final Snacks FRIES;
    public static final Snacks COOKIES;
    public static Snacks[] values(); 
    public static Snacks valueOf(java.lang.String); 
    static {}; 
}

Hence, we see that all the variables are static and the static variables take memory irrespective if they are used or not and are not collected by Java Garbage Collector; unless the respective class is dropped, as they have scope across the entire program.

So the static variable in your Android app could look unattractive but statics are not always bad. To use any general variable we need to create an object of it’s class. But if that object is created multiple times, the Garbage Collector has to collect it again and again, hence it might be better to use Enums. If there is no such condition then you must avoid enums as much as possible.

Discover and read more posts from Vatsal Bajpai
get started
post commentsBe the first to share your opinion
Zubi Khan
7 years ago

Sir plzz .i want full Andoroid tutorials of yours

Show more replies