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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:14:34+00:00 2026-05-11T02:14:34+00:00

Why can’t enum’s constructor access static fields and methods? This is perfectly valid with

  • 0

Why can’t enum’s constructor access static fields and methods? This is perfectly valid with a class, but is not allowed with an enum.

What I’m trying to do is store my enum instances in a static Map. Consider this example code which allows lookup by abbreivation:

public enum Day {     Sunday('Sun'), Monday('Mon'), Tuesday('Tue'), Wednesday('Wed'), Thursday('Thu'), Friday('Fri'), Saturday('Sat');      private final String abbreviation;      private static final Map<String, Day> ABBREV_MAP = new HashMap<String, Day>();      private Day(String abbreviation) {         this.abbreviation = abbreviation;         ABBREV_MAP.put(abbreviation, this);  // Not valid     }      public String getAbbreviation() {         return abbreviation;     }      public static Day getByAbbreviation(String abbreviation) {         return ABBREV_MAP.get(abbreviation);     } } 

This will not work as enum doesn’t allow static references in its constructor. It however works just find if implemented as a class:

public static final Day SUNDAY = new Day('Sunday', 'Sun'); private Day(String name, String abbreviation) {     this.name = name;     this.abbreviation = abbreviation;     ABBREV_MAP.put(abbreviation, this);  // Valid } 
  • 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. 2026-05-11T02:14:35+00:00Added an answer on May 11, 2026 at 2:14 am

    The constructor is called before the static fields have all been initialized, because the static fields (including those representing the enum values) are initialized in textual order, and the enum values always come before the other fields. Note that in your class example you haven’t shown where ABBREV_MAP is initialized – if it’s after SUNDAY, you’ll get an exception when the class is initialized.

    Yes, it’s a bit of a pain and could probably have been designed better.

    However, the usual answer in my experience is to have a static {} block at the end of all the static initializers, and do all static initialization there, using EnumSet.allOf to get at all the values.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 216k
  • Answers 216k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Read about SPF: http://www.openspf.org/Introduction y http://en.wikipedia.org/wiki/Sender_Policy_Framework It's acceptable really, depending… May 12, 2026 at 11:07 pm
  • Editorial Team
    Editorial Team added an answer You are using System.Net.HttpWebResponse. But the above example uses System.Web.HttpResponse… May 12, 2026 at 11:07 pm
  • Editorial Team
    Editorial Team added an answer Your function takes its parameters by reference, not by value,… May 12, 2026 at 11:07 pm

Related Questions

Why can't you do this and is there are work around? You get this
Why can I not see an option for copying database objects when I right
Why can't I pass the table name to a prepared PDO statement? $stmt =
Why can't I create a class in VB.NET that inherits System.IO.Directory ? According to
Why can't Delphi variants hold objects? More importantly, what's the reason behind this limitation?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.