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 is question is the Validator.validate method. It has two signatures:

List<ConstraintViolation> validate(Object validatedObject)
List<ConstraintViolation> validate(Object validatedObject, String... profiles) 

The scala code looks generally like this:

def validate(toValidate: AnyRef) = {
  val validator = createValidator
  validator.validate(toValidate)
}

And the error message:

error: ambiguous reference to overloaded definition,
[INFO] both method validate in class Validator of type (x$1: Any,x$2: <repeated...>[java.lang.String])java.util.List[net.sf.oval.ConstraintViolation]
[INFO] and  method validate in class Validator of type (x$1: Any)java.util.List[net.sf.oval.ConstraintViolation]
[INFO] match argument types (AnyRef)
[INFO]       this.validator.validate(toValidate)

How can I get this be be unambiguous?

link|improve this question

It does appear to be an ambiguous reference to an overloaded definition question on stack overflow. Should I delete this post? Although Rex Kerr did give an answer that wasn't on the original. – OleTraveler Jun 2 '11 at 16:16
I recreated my answer there, and expanded it in two ways: a short form for what I wrote for methods, and an alternate that works for constructors. – Rex Kerr Jun 2 '11 at 18:10
feedback

closed as exact duplicate by Mat, marc_s, Ken White, Gavin Simpson, Ted Hopp Jun 17 '11 at 16:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

I think that this could be a duplicate of How do I disambiguate in Scala between methods with vararg and without

Basically, it is a known java-scala-interop problem, and the only workarounds involve extra Java adapters to make accessible in Scala.

link|improve this answer
feedback

The only way I know of is to use reflection:

val ambiguous = validator.getclass.getMethods.filter(_.getName == "validate")
val wanted = ambiguous.find(_.getParameterTypes.length == 1).get
wanted.invoke(validator, toValidate).asInstanceOf[java.util.List[ConstraintViolation]]
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.