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

  • Home
  • SEARCH
  • 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 6934143
In Process

The Archive Base Latest Questions

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

I need some guidance on how to initialize this hash inside a singleton. So

  • 0

I need some guidance on how to initialize this hash inside a singleton.

So according to the author of effective java, you declare a singleton using an enumeration: https://sites.google.com/site/io/effective-java-reloaded/effective_java_reloaded.pdf?attredirects=0

So I have this so far:

public enum MySingleton {
  INSTANCE;

  private final Hashtable<SomeEnumType, UserSettings> settings;

  public final UserSettings getSettings(SomeEnumType enumType) {
     return settings.get(enumType);
  }

}

So I think I have my singleton correct, I need help on how I can initialize the settings hashtable inline.

private final Hashtable<SomeEnumType, UserSettings> settings = new Hashtable<SomeEnumType, UserSettings>() {{
  put(SomeEnumType.Blah1, new UserSettings ???????  );
}};

Say my UserSettings has some fields, can I set them inline?
Any comments on the singleton, is it ok?

Note: I will not be updating this hash at all after I initialize it.

  • 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:55:21+00:00Added an answer on May 27, 2026 at 11:55 am

    As you’re not updating the Hashtable, you don’t require synchronization, so I’d use a HashMap instead. You have 2 options to initialize the map.

    1) In the enum constructor

    public enum MySingleton {
      INSTANCE;
    
      private final HashMap<SomeEnumType, UserSettings> settings;
    
      private MySingleton(){
        settings = new HashMap<SomeEnumType, UserSettings>();
        settings.put(...,...);
      }
    
      public final UserSettings getSettings(SomeEnumType enumType) {
         return settings.get(enumType);
      }
    
    }
    

    2) In an initializer block

    public enum MySingleton {
      INSTANCE;
    
      private final HashMap<SomeEnumType, UserSettings> settings;
      {
        settings = new HashMap<SomeEnumType, UserSettings>();
        settings.put(...,...);
      }
    
      public final UserSettings getSettings(SomeEnumType enumType) {
         return settings.get(enumType);
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need some guidance figuring out what went wrong. I've been using mysql, phpmyadmin for
I am new in this field and i desperately need some guidance from u
Need some help to solve this. I have a gridview and inside the gridview
Need some guidance. I have java webstart app and I want it to connect
I need some guidance with this issue I have. I have a navigational Controller,
I am developing a registration web app using Struts2 and need some guidance. Background:
I need some guidance on how best to run this program. Im trying to
I'm still learning Java/Android development and I need some guidance to implement an Async
I am new to mocking and dependency injection and need some guidance. My application
I am in need of some guidance of how to carry out a specific

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.