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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T19:55:35+00:00 2026-06-12T19:55:35+00:00

I have a flag telling me which class type to use. A static method

  • 0

I have a flag telling me which class type to use. A static method should be used to retrieve the right class. The class type is needed as an input for a generic method.

public class Config{
    public static int flag = 1;
}

public interface A {
    public abstract int getResult();
}

public class A1 implements A{
    public int getResult{
    // ...
    }
}

public class A2 implements A{
    public int getResult{
    // ...
    }
}

public class AType{

    public static Class getType(){
        switch (Config.flag) {
    case 1:
        return A1.class;
    case 2:
        return A2.class;
        default:
            return null;
    }
}

The return type of “getType()” is wrong. I already tried some generic return types, but as it seems it does not work like that to retrieve a class type for further usage…

Any ideas how to return a different class type depending on a configuration flag?

I need the class type (A1 or A2) as an input for generic methods like this one:

public static <T extends Message> T[] getArrayFromStream(DataInputStream in, Class<T> returnType)
        throws IOException {
    return getArrayFromStream(in, returnType, new Object[0]);
}
  • 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-12T19:55:36+00:00Added an answer on June 12, 2026 at 7:55 pm

    My guess (given the lack of information) is that you are trying to do this:

    Class clazz = getType();
    A instance = clazz.newInstance();
    

    If that is the case you need this…

    public Class<? extends A> getType(){...}
    

    and then

    Class<? extends A> clazz = getType();
    A instance = clazz.newInstance();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a boolean flag :finished . Should I A: index({ finished: 1 })
I have a stream of bytes which contains a flag which identifies the endianness
I have an intent to another class and all it does it just flag
Suppose I have a DLL which is built with LARGEADDRESSAWARE linker flag set. Now
I use console.log for debugging on my web app, I have a flag variable:
Why doesn't the -C flag have an option to enable the use utf8-pragma?
I have a database where most tables have a delete flag for the tables.
I have a table of format id name flag ---------------- 11 Jack 1 11
I have problem with Qt::Tool flag. When I create new widget with Qt::Tool flag
I have a website with a flag. If it is clicked, the language of

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.