Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
6answers
1k views

Migrating Java to Scala

What are the most important points to be aware of, and the workarounds, when gradually migrating an existing Java codebase to Scala? With a (potentially very long) intermediate phase where both ...
24
votes
2answers
6k views

Java <-> Scala interop: transparent List and Map conversion

I am learning Scala and I have a Java project to migrate to Scala. I want to migrate it by rewriting classes one-by-one and checking that new class didn't break the project. This Java project uses ...
18
votes
2answers
1k views

Compatibility between Scala closures and Java 8 closures

After reading some OpenJDK mailinglist entries, it seems that the Oracle developers are currently further removing things from the closure proposal, because earlier design mistakes in the Java ...
13
votes
1answer
317 views

Scala: Overriding Generic Java Methods II

In Scala, I need to override the following, given, Java classes and methods: public abstract class AbstractJava<T> { protected abstract T test(Class<? extends T> clazz); } public ...
12
votes
2answers
355 views

Using Scala traits with implemented methods in Java

I guess it is not possible to invoke methods implemented in Scala traits from Java, or is there a way? Suppose I have in Scala: trait Trait { def bar = {} } and in Java if I use it as class ...
11
votes
2answers
205 views

Whats the difference between == and .equals in Scala?

What is the difference between == and equals in Scala, and when to use which? Is the implementation same as in Java?
9
votes
3answers
291 views

What is the Java equivalent of a Scala object?

In Scala, we can write object Foo { def bar = {} } How is this implemented by the compiler? I am able to call Foo.bar(); from Java but new Foo(); from Java gives the error cannot find symbol ...
9
votes
3answers
274 views

Using Scala from Java: passing functions as parameters

Consider the following Scala code: package scala_java object MyScala { def setFunc(func: Int => String) { func(10) } } Now in Java, I would have liked to use MyScala as: package ...
8
votes
2answers
683 views

Create an immutable list from a java.lang.Iterator

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 ...
7
votes
5answers
1k views

How do you call a Scala singleton method from Java?

I'm trying to inject some Scala code into my existing Java app. (So, being said, I want some more fun). I create a singleton stuff in Scala ScalaPower.scala package org.fun class ScalaPower ...
6
votes
2answers
109 views

Idiomatic use of a Java comparable object

I'm using some java.util.Date (which implements java.lang.Comparable) and would like to be able to use it nicely, e.g. use < and >= instead of "compareTo(other) == 1". Is there a nice way to just ...
6
votes
2answers
106 views

Using scala vararg methods in java

Why do all scala vararg methods, when used from java, seem to accept a Seq of variables, and can't be used as java native vararg methods. Is this a bug? For instance, Buffer has method def ...
6
votes
2answers
150 views

Using Java constants from Scala in Android

I have a strange problem with developing in Scala on Android. I'm using sbt android plugin and right now I'm trying to get content providers working, but... I need to get array of columns, and I'm ...
6
votes
4answers
565 views

Scala extra no-arg constructor plus default constructor parameters

I am using the Scala 2.8 default parameters on a constructor, and for Java compatibility reasons, I wanted a no-arg constructor that uses the default parameters. This doesn't work for very sensible ...
5
votes
1answer
116 views

Time complexity of JavaConverters asScala method

Starting with Scala version 2.9 there exists a handy converter to convert from java.util.List and other collections to Scala's data structures by writing something like this: import ...
5
votes
2answers
135 views

Can I access a Scala object's val without parentheses from Java?

Given the following Scala object: object ScalaObject { val NAME = "Name" } It appears that the Scala compiler generates a parameterless method to access the NAME field. However, when I try to ...
5
votes
1answer
230 views

Builder Library for Scala and Java

I need a builder library that can be called from Scala and Java. Easy enough in Scala using default, named parameters. But how do I call this code from Java? See below. Or perhaps I should go with a ...
5
votes
4answers
703 views

Please explain use of Option's orNull method

Scala's Option class has an orNull method, whose signature is shown below. orNull [A1 >: A](implicit ev : <:<[Null, A1]) : A1 I'm bewildered by the implicit thing. Would somebody please ...
5
votes
2answers
872 views

Use Scala Constants in Java

I am currently evaluating Scala for future projects and came across something strange. I created the following constant for us in a JSP: val FORMATED_TIME = "formatedTime"; And it did not work. ...
5
votes
3answers
980 views

Is there a way in scala to convert from any Map to java.util.Map?

I use a lot of scala maps, occasionally I want to pass them in as a map to a legacy java api which wants a java.util.Map (and I don't care if it throws away any changes).
4
votes
2answers
364 views

Scala - ambiguous reference to overloaded definition — with varargs [closed]

Possible Duplicate: How do I disambiguate in Scala between methods with vararg and without I am currently porting part of an application to scala and it uses the Oval library. The method ...
4
votes
1answer
202 views

is it possible to have a circular dependency between .java and .scala classes?

Lets say I have class A defined in .java file, and class B defined in .scala file. class A use class B and class B use class A. If I use java compiler I will have a compilation error because class B ...
4
votes
1answer
970 views

Calling a protected static Java method from Scala

I have a library here with some Java classes. One class has some protected static methods, which I realize is sorta an OOP no-no but I can't change its code. Assuming I have a Scala class that ...
3
votes
3answers
150 views

How do I handle Hashtable nulls in Scala?

I'm porting some java code across and have the following val overnightChanges: java.util.Hashtable[String, Double] = ... When I try if (null != overnightChanges.get(...)) I get the following ...
3
votes
1answer
184 views

How do I access Java enums from Scala?

My java class is as follows public class Test { protected enum TestEnum {A, B, C}; public Test(TestEnum te) { } } here is my Scala class ScalaEnum(myEnum: TestEnum) extends ...
3
votes
2answers
300 views

Type-safe Builder Library for Scala and Java

Below is a type-safe, fluid, builder pattern in Scala as described at http://www.tikalk.com/java/blog/type-safe-builder-scala-using-type-constraints. It's similar to Builder Library for Scala and ...
3
votes
2answers
310 views

How can two coupled Scala generic type constructors refer to each other as type parameters?

In Java 1.6.0_21, the first example below compiles fine, and I think that's because the parameter type bounds are bare. That is, in the "Z extends Zen" bound below, Java allows Zen to slide by as ...
3
votes
2answers
295 views

Why does Scala complain about illegal inheritance when there are raw types in the class hierarchy?

I'm writing a wrapper that takes a Scala ObservableBuffer and fires events compatible with the Eclipse/JFace Databinding framework. In the Databinding framework, there is an abstract ObservableList ...
3
votes
1answer
268 views

Scala autoboxing and Java Map

I have a Java method takes an argument of type Map<Long, Foo>. I am trying to write a unit test for that method in Scala 2.8.1 and pass in a literal Map[Long, Foo]. My code looks like this: ...
2
votes
1answer
155 views

Scala searches for an obscure Main class

I have what should be a simple scala script that looks as follows: object SaveTaggedSenseTask { def main(args: Array[String]) { val ...
2
votes
3answers
228 views

Calling scala abstract classes with parameters and inner classes from Java

If I define a Scala class: class X(i:Int) { println (i) } How do I use this class in Java code? [EDIT] Actually, my problem is slightly more complicated I have an abstract class abstract ...
2
votes
2answers
395 views

In Scala, how can I define a companion object for a class defined in Java?

I'd like to add implicit conversions to Java classes generated by a modeling tool. So I want to add them to the companion object of those classes, so that the compiler automatically finds them. But I ...
2
votes
4answers
201 views

How can I store a reference to a set of static Java methods from Scala?

In the context of Eclipse Databinding, there are quite a few Java classes that act as factories for IObservable objects. For instance, there's BeanObservables, PojoObservables, EMFObservables, etc., ...
1
vote
1answer
57 views

How do I make a Java friendly API for case classes with optional fields

I'm creating some case classes in Scala that I use to persist data mongodb. The client app is written in Java and using my repository by passing in instances of these case classes. It works fine, ...
1
vote
1answer
159 views

Auto conversion between scala and java collections when using scala.collection.JavaConversions._ in scala 2.8

I have java API which return this type: ArrayList[ArrayList[String]] = Foo.someJavaMethod() In scala program, I need to send above type as a parameter to a scala function 'bar' whose type is ...
1
vote
2answers
186 views

Scala-Java incompatibility referencing static fields in a class with the same name as a static inner class

Take this Java class: public class Fisk { public static class A { } public static A A = new A(); } This Java code works: Fisk.A a = new Fisk.A(); Fisk.A b = Fisk.A; But ...
1
vote
1answer
282 views

Return a Java collection of type and subclasses from Scala

I have an interface in Java that looks something like this: public interface X<T> { Set<Class<? extends T>> getTypes(); } I need to implement this interface in Scala 2.8 and ...
1
vote
4answers
336 views

Visibility of properties in scala class

I defined a property in the constructor of my class the following way: class Step(val message:String = "") When I try access to message value from Java code y get a visbility error. Why?
0
votes
2answers
317 views

How do I get rid of this type warning/error?

I have a script. It runs without warnings. $ cat ~/tmp/so1.scala import org.yaml.snakeyaml.Yaml class JavaMapIteratorWrapper[K,V] (map: java.util.Map[K,V]) { def foreach (f: Tuple2 [K, V] => ...