I'm using a library (JXPath) to query a graph of beans in order to extract matching elements. However, JXPath returns groups of matching elements as an instance of java.lang.Iterator and I'd rather like to convert it into an immutable scala list. Is there any simpler way of doing than iterating over the iterator and creating a new immutable list at each iteration step ?
|
feedback
|
|
You might want to rethink the need for a The operations that list is optimal for are those already available via an iterator (basically taking consecutive head elements and prepending elements). If an iterator doesn't already give you what you need, then I can pretty much guarantee that a List won't be your best choice - a vector would be more appropriate. Having got that out the way... The recommended technique to convert between Java and Scala collections (since Scala 2.8.1) is via You won't have a direct implicit conversion this way. Instead, you get To convert a Java iterator to a Scala iterator:
To convert a Java iterator to a Scala List (via the scala iterator):
You may also want to consider converting EDIT:
There's no
| |||||||||||||
feedback
|
|
EDIT: You should probably look at Kevin Wright's answer, which provides a better solution available since Scala 2.8.1, with less implicit magic. You can import the implicit conversions from
Your Java iterator is converted to a Scala iterator by If you need another collection type, just change | ||||
|
feedback
|