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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:02:35+00:00 2026-06-07T12:02:35+00:00

I have a Java class with a 2-option enum inside of it. The outer

  • 0

I have a Java class with a 2-option enum inside of it. The outer class has a member instance of the enum. I have a method that switches the member’s option. Like so:

    public class Foo {
        public enum BarEnum {
            OPTION1, OPTION2;
        }

        private BarEnum barmember;

        private void switchBarmember {
            switch (barmember) {
                case OPTION1: barmember = BarEnum.OPTION2; break;
                case OPTION2: barmember = BarEnum.OPTION1; break;

            }
        }
    }

My question is, is there a way to execute the change without saying BarEnum.? In other words, is there a way to make the method look like this:

        private void switchBarmember {
            switch (barmember) {
                case OPTION1: barmember = OPTION2; break;
                case OPTION2: barmember = OPTION1; break;

            }
        }

If there isn’t a way, just let me know. Thanks!

  • 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-07T12:02:36+00:00Added an answer on June 7, 2026 at 12:02 pm

    Not exactly, but this will work:

    public class Foo {
        public enum BarEnum {
            OPTION1,
            OPTION2;
    
            private BarEnum switchValue ( )
            {
                switch( this )
                {
                case OPTION1:
                     return OPTION2;
                case OPTION2:
                     return OPTION1;
                }
    
                throw new AssertionError("Should not be here");
            }
        }
    
        private BarEnum barmember;
    
        private void switchBarmember {
            barmember = barmember.switchValue( );
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

in my ApplicationBean1.java class I have an Option[] attribute years and a filling method:
We have a class LogManager in our Java project which looks like this: public
I have a Java class MyPojo that I am interested in deserializing from JSON.
I have a Java class, Node as follows : class Node { public ArrayList<Node>
If I have a java class which is package-private (declared with class, not public
So we have a java class with two ArrayLists of generics. It looks like
I have a Java class which has some field annotated with @SearchCriteria(criteria = class1.class2.field)
I'm writing a method that forms part of the public interface of a Java
Is it possible to compile java class child of parent class, that invoking method
For my Java class, we need to make a bank account that has the

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.