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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:54:45+00:00 2026-06-04T00:54:45+00:00

How can I remove the warning from id = (PK) m.invoke(obj, (Object []) null);

  • 0

How can I remove the warning from “id = (PK) m.invoke(obj, (Object []) null);“

    private PK getId(T obj) {
    PK id = null;
    for (Field f : type.getDeclaredFields()) {
        if (f.getAnnotation(Id.class) != null) {
            String name = f.getName();
            String method = "get" + name.substring(0, 1).toUpperCase() + name.substring(1);
            try {
                Method m = type.getDeclaredMethod(method, (Class<?>) null);
                id = (PK) m.invoke(obj, (Object []) null);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
    return id;
}
  • 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-04T00:54:46+00:00Added an answer on June 4, 2026 at 12:54 am

    I’m assuming PK is a generic type in your class

    class MyClass<PK> {
    

    Due to Java type erasure, the type PK is not available at runtime. But if you accept in your constructor a Class<PK> instance, then you can get around this by calling klass.cast(...)

    class MyClass<PK> {
        private final Class<PK> keyClass;
        MyClass(Class<PK> keyClass) {
             this.keyClass = keyClass;
        }
    
        PK getKey() {
            return keyClass.cast(...);
        }
    }
    

    If for whatever reason you can’t get a reference to the actual runtime type of PK, then you have little recourse but to suppress the warning.

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

Sidebar

Related Questions

This is my warning. implicit declaration of function 'exit' How i can remove it.
How to I can remove posts from a specific category from homepages in wordpress?
I want to know is there any way that I can remove duplicates from
How would I remove a view from this dialog? I know I can remove
I was trying to filter specific elements from an Iterator object, and I can
Can anybody tell me how to remove all CA2202 warnings from the following code?
How can you remove the warnings about unused columns arising from the Pivot key
One can remove all calls to printf() using #define printf . What if I
Is there a way I can remove the background bar image in the SeekBar
I am looking for an API that can remove bundle items added in 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.