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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:06:54+00:00 2026-06-18T06:06:54+00:00

Is it possible to automatically infer the return type if I give an Enum

  • 0

Is it possible to automatically infer the return type if I give an Enum as parameter to a method in Java?

I would like to be able to support these calls by making getValue generic and using information in the Enum

String myval = obj.getValue(MyEnum.Field1)
int myval2 = obj.getValue(MyEnum.Field2)

Current solution

My current solution does like this:

String val = typeRow.getColumnValueGen(TYPEGODKENDCRM.COLUMN_TYPEGODKENDNR, String.class)

It’s for accessing columns in a ORM representation of a table. I known that this field is a string, I would like to avoid having to tell it at every call.

  • 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-18T06:06:55+00:00Added an answer on June 18, 2026 at 6:06 am

    Is it possible to automatically infer the return type if I give an Enum as parameter to a method in Java?

    No. You can’t overload methods by return type in Java, and if you wanted something like:

    public <T> T getValue(MyEnum enumValue)
    

    there’s no way for the compiler to infer T based on the argument. Type inference can work in some cases, but not like this. There’s no way for the compiler to examine some aspect of the argument and infer or even validate the type based on that value.

    Aside from anything else, what would you expect it to do if the argument weren’t a compile-time constant?

    MyEnum x = getEnumValue();
    // Is this valid or not?
    String myVal = obj.getValue(x);
    

    Basically you would have to cast the return value… and in the case of int, you’d need to cast to Integer rather than int, and then let auto-unboxing do the rest.

    Personally I’d just create multiple methods:

    String x = obj.getString(...);
    int y = obj.getInt(...);
    

    That leaves no room for ambiguity, doesn’t require any cleverness with generics etc.

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

Sidebar

Related Questions

I am using Eclipse to develop a Blackberry Java application.Is possible to automatically increment
I'd like to know if it is possible to automatically import all subclasses of
I am using Python's (2.7) argparse facility and would like to automatically sort the
Is it possible to automatically synchronise settings between computers, especially LiveTemplates? Basically, I would
Is it possible to automatically refresh a website on a timer, like every 15
I would like to know if it is possible to simplify the following process:
I would like to create a location-aware application on WP7.5 Is it possible to
Is it possible to automatically return from a function using a Breakpoint/Tracepoint? I don't
is it possible to automatically export mysql database in phpmyadmin
Is it possible to automatically encrypt files via 'git push' before transferring to a

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.