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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:18:32+00:00 2026-05-23T05:18:32+00:00

I have an API (from third party java library) that looks like: public List<?>

  • 0

I have an API (from third party java library) that looks like:

public List<?> getByXPath(String xpathExpr)

defined on a class called DomNode

I try this in scala:

node.getByXPath(xpath).toList.foreach {node: DomElement => 

   node.insertBefore(otherNode)   

}

But I get compile error on node.getByXPath.
error: “type mismatch; found : (com.html.DomElement) => Unit required: (?0) => ? where type ?0”

If I change it into:

node.getByXPath(xpath).toList.foreach {node => 

   node.insertBefore(otherNode)   

}

then the error goes away but then I get error on node.insertBefore(otherNode)
error: “value insertBefore is not a member of ?0”

What is the answer to this problem?

  • 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-23T05:18:33+00:00Added an answer on May 23, 2026 at 5:18 am

    You’ll have to cast it. ie,

    node.getByXPath(xpath).toList.foreach {node => 
       node.asInstanceOf[DomElement].insertBefore(otherNode)   
    }
    

    You would have the same issue in Java as the type of List elements is unknown.

    (I am assuming every element actually is a DomElement)

    EDIT:

    Daniel is right, there is a better way to do this. For example, you can throw a much nicer exception (as compared to ClassCastException or MatchError). Eg.

    node.getByXPath(xpath).toList.foreach { 
        case node: DomElement => node.insertBefore(otherNode)  
        case _: => throw new Exception("Expecting a DomElement, got a " + node.getClass.getName)   
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an API (from third party java library) that looks like: public List<?>
I have a json object returned from a third party api, it looks like:
I have a project that uses a third party library in the form of
session.identify is a third party COM API that I call and have no access
There are many java standard and 3rd party libraries that in their public API,
I have a third party library that I'm attempting to incorporate into a simulation.
I have a form that is capturing data sent from a google LocalSearch API.
I have a simple object that get's geocoding data from the Google Maps API
I have a third-party GUI program that I'm wrapping with a Python class (using
I am using an API in a Java library which is called from the

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.