Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6931097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:31:58+00:00 2026-05-27T11:31:58+00:00

Is it possible to use Enum in Android like this? public enum EventAction {

  • 0

Is it possible to use Enum in Android like this?

public enum EventAction 
{
  SDCARD_MOUNTED
  {
    public String toString() {
      return "External SDCard was mounted";
    }

    public int getCode() {
      return 25;
    }
  }
}  

From the outside code I have an access only to EventAction.SDCARD_MOUNTED.toString() but .getCode() is not visible. Examples I saw show how getCode() is used from inside code.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:31:59+00:00Added an answer on May 27, 2026 at 11:31 am

    Declare getCode() as an abstract method:

    public enum EventAction 
    {
      SDCARD_MOUNTED
      {
        @Override
        public String toString() {
          return "External SDCard was mounted";
        }
        @Override
        public int getCode() {
          return 25;
        }
      };
    
      public abstract int getCode();
    
    }
    

    If every value is going to be implemented the same way, it’s clearer to do this:

    public enum EventAction {
      SDCARD_MOUNTED(25, "External SDCard was mounted");
      private final int code;
      private final String message;
      private EventAction(int code, String message) {
        this.code = code;
        this.message = message;
      }
      @Override
      public String toString() { return message; }
      public int getCode() { return code; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using an enum singletom pattern like this: public enum LicenseLoader implements ClientLicense
I like to use enum as value holders whereever possible and I like it.
Is it possible to use enums in a conditional statement, like typedef enum {
Possible Duplicate: Easy way to use variables of enum types as string in C?
Possible Duplicate: Why use enum when #define is just as efficient? When programming in
Possible Duplicate: Enum type constraints in C# Is it possible to use enum types
Possible Duplicate: Using GetHashCode for getting Enum int value Is it safe to use
I understand it's possible to use bitmasks in enum values, but I don't know
Is it possible to do this? I need to use: this.ControlName.DataBindings.Add (...) so I
I doubt this is possible but what I would like to do is have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.