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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:30:00+00:00 2026-05-26T05:30:00+00:00

I have an android app with a Business Object (let’s call it SuperClass) that

  • 0

I have an android app with a Business Object (let’s call it SuperClass) that has several derived classes (let’s call them DerviedClassA, DerivedClassB etc). Each object has a constructor which takes a Cursor object with multiple rows and assigns appropriate properties based on the current row in the cursor

public Class DerivedClassA
{
    // properties
    private int X;
    // etc

    public DerivedClassA(Cursor data)
    {
         X = data.getInt(data.getColumIndex(ColumnX));
         // etc
    }
}

I then have BO methods which return an ArrayList of the derived class, like below:

public static ArrayList<DerivedClassA> getDerivedClassAList(Cursor data)
{
    ArrayList<DerivedClassA> list = new ArrayList<DerivedClassA>();

    for(int i=0;i<data.getCount();i++)
    {
        data.moveToPosition(i);
        DerivedClassA wev = new DerivedClassA(data);
        list.add(wev);
    }

    data.close();
    return list;
}

And so on for DerivedClassB, DerivedClassC etc. To avoid this duplication, I want to be able to have a single method which somehow takes in the type of the derived class, invokes the appropriate constructor of that derived class, and returns an ArrayList of the appropriate derived class. Something like:

public static ArrayList<T extends SuperClass> getDerivedClassList(Cursor data)
{
    ArrayList<T> list = new ArrayList<T>();

    for(int i=0;i<data.getCount();i++)
    {
        data.moveToPosition(i);
        T wev = new T(data);
        list.add(wev);
    }

    data.close();
    return list;
}

However, I’m not sure if it’s actually possible, or how to go about it. Any pointers would be appreciated.

  • 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-05-26T05:30:00+00:00Added an answer on May 26, 2026 at 5:30 am

    Yes, it is.

    public static <T extends SuperClass> ArrayList<T extends SuperClass> getDerivedClassList(Cursor data)
    {
        ArrayList<T> list = new ArrayList<T>();
    
        for(int i=0;i<data.getCount();i++)
        {
            data.moveToPosition(i);
            T wev = new T(data);
            list.add(wev);
        }
    
        data.close();
        return list;
    }
    

    Refer:

    http://download.oracle.com/javase/tutorial/extra/generics/methods.html

    http://download.oracle.com/javase/tutorial/java/generics/genmethods.html

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

Sidebar

Related Questions

I have an android app for which i need to ensure that it has
I have developed a business app that runs fine on android phone. What do
I have an android app that has to be restricted to portrait mode, and
I have a class that extends android.app.Dialog, the layout is done in an xml
I have an Android project that branched into three different applications, app-1 , app-2
I have an Android app that uses ActionBar Sherlock. I create a menu that
I have an Android app that allows the user to record data (such as
I have an android-app with a listview in an activity. The listview has, if
I have an android app that wants to initiate an email. The following code
I have an android app, in that there is a particular requirement where in

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.