How can you access scala.None from Java?
scala.None
The last line causes the compiler to die with \"type scala.None does not take parameters\".
imp
This might work:
final scala.Option x = scala.Option.apply(null);
def apply [A] (x: A): Option[A] An Option factory which creates Some(x) if the argument is not null, and None if it is null.