Skip to content

Remove values from enums

Remove unnecessary values from enums. Basically clean them up so we don't store unnecessary things and have a simpler overview like

public enum Fasel {

        Value,
        Other

    }

    System.out.println("Enum is: " + Fasel.Other);
Enum is: Other