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 9098157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T00:17:38+00:00 2026-06-17T00:17:38+00:00

After doing some research, I see since java 1.5 it is preferable to manage

  • 0

After doing some research, I see since java 1.5 it is preferable to manage constants (or key properties) in enum which are declared in a “constant” class.

I’d like to know what is the proper way to implement these enum to get as simple as possible the value of an element of an enum whatever its type.

Example : is it possible to have the value of “Constant.Messages.WARNING” where Messages is :

public enum Messages {

    WARNING("main.message.warning")

}

Thank you.

  • 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-06-17T00:17:40+00:00Added an answer on June 17, 2026 at 12:17 am

    You can customize enums as other classes in Java with few exceptions.

    I’ll use the same example, but it uses toString without getMessage, so you can use enums in those places where toString is called (for example, in System.out.println or any logging methods).

    public enum Messages
    {
        WARNING("main.message.warning"),
        ERROR("main.message.error");
    
        private final String message;
    
        // Parameters to the enum constructors are the ones in the enum "definition"
        Messages(final string message)
        {
            this.message = message;
        }
    
        @Override
        public String toString()
        {
            return message;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After doing some research on the subject, I've been experimenting a lot with patterns
I am building my own torrent site and after doing some research I have
After doing some research here and online I am at a loss as to
I have raised a similar question before yet after doing some research and bashing
I have a problem with the stage.addeventlistner. After doing some research i found some
I think it is not complicated but after doing some research I can't find
After doing some research I heard only PHP 5.3.6+ supports PDO and SSL. I
After doing some research I feel this should work, however it is not saving
I have a specific task and after doing some research, I feel a little
Edit Ok, after doing some research it seems to be the clearfix I am

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.