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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:23:00+00:00 2026-05-26T08:23:00+00:00

I have a method and as a parameter I send List. The method looks

  • 0

I have a method and as a parameter I send List.
The method looks like this:

public static void setSanctionTypes(List<QueueSueDTO> items) {

    for (QueueSueDTO dto : items) {

        StringBuffer sb = sanctionTypeRutine(dto.getRegres().getDebtors());

        String sanctionType = sb.toString();
        dto.setSanctionType(sanctionType);
    }
}

I need to use this method for different List data types parameters (for example setSanctionTypes(List<QueuePaymentDTO> items); etc.).
All clases I want to send as a parameter have method getRegres(), so content of setSanctionTypes() method is common and usable for all these classes I want to send to it.

If I do this

public static void setSanctionTypes(List<?> items) {

    for (Object dto : items) {

        StringBuffer sb = sanctionTypeRutine(dto.getRegres().getDebtors());

        String sanctionType = sb.toString();
        dto.setSanctionType(sanctionType);
    }
}

the dto of type Object doesn’t know about getRegres(). I can cast to required type but it will be only one concrete type and it won’t be usable for other parameters…

Is there way to resolve my problem ?
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-05-26T08:23:01+00:00Added an answer on May 26, 2026 at 8:23 am

    You have do define an interface which forces the classes to implement getRegres(). Then you implement this interface for all classes you need and use:

    interface Interface {
      <type> getregres();
    }
    
    public static void setSanctionTypes(List<? extends Interface> items) {
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method (in 3rd-party library) with BigInteger parameter: public void setValue (BigInteger
I have 5 parameters and I want to send them to the method: public
Imagine I have a method: void Method(bool parameter){ if(parameter){ // first case } else
I have a static method that takes a parameter and returns a class. the
I have am using a sortable jQuery list. I would like to send the
I have to send some parameter to an IFRAME with POST method. I have
I have methods like this: public File method1(){ method2() } public method2(){ do something..
I have the following where I'm trying to send list/array to MVC controller method:
If I have a method with a parameter that's an interface, whats the fasts
I have a method with an out parameter that tries to do a type

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.