Package akka.japi
Class Util
- java.lang.Object
-
- akka.japi.Util
-
public class Util extends java.lang.Object
This class hold common utilities for Java
-
-
Constructor Summary
Constructors Constructor Description Util()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> scala.reflect.ClassTag<T>
classTag(java.lang.Class<T> clazz)
Returns a ClassTag describing the provided Class.static <T> scala.collection.immutable.IndexedSeq<T>
immutableIndexedSeq(java.lang.Iterable<T> iterable)
Turns anIterable
into an immutable Scala IndexedSeq (by copying it).static scala.collection.immutable.Seq<java.lang.Class<?>>
immutableSeq(java.lang.Class<?>[] arr)
Returns an immutable.Seq representing the provided array of Classes, an overloading of the generic immutableSeq in Util, to accommodate for erasure.static <T> scala.collection.immutable.Seq<T>
immutableSeq(java.lang.Iterable<T> iterable)
Turns anIterable
into an immutable Scala sequence (by copying it).static <T> scala.collection.immutable.Seq<T>
immutableSeq(java.lang.Object arr)
Turns an array into an immutable Scala sequence (by copying it).static <T> scala.collection.immutable.Seq<T>
immutableSingletonSeq(T value)
static <T> java.util.List<T>
javaArrayList(scala.collection.immutable.Seq<T> seq)
static <T> scala.Option<T>
option(java.util.Optional<T> jOption)
-
-
-
Method Detail
-
classTag
public static <T> scala.reflect.ClassTag<T> classTag(java.lang.Class<T> clazz)
Returns a ClassTag describing the provided Class.
-
immutableSeq
public static scala.collection.immutable.Seq<java.lang.Class<?>> immutableSeq(java.lang.Class<?>[] arr)
Returns an immutable.Seq representing the provided array of Classes, an overloading of the generic immutableSeq in Util, to accommodate for erasure.
-
immutableSeq
public static <T> scala.collection.immutable.Seq<T> immutableSeq(java.lang.Object arr)
Turns an array into an immutable Scala sequence (by copying it).
-
immutableSeq
public static <T> scala.collection.immutable.Seq<T> immutableSeq(java.lang.Iterable<T> iterable)
Turns anIterable
into an immutable Scala sequence (by copying it).
-
immutableSingletonSeq
public static <T> scala.collection.immutable.Seq<T> immutableSingletonSeq(T value)
-
javaArrayList
public static <T> java.util.List<T> javaArrayList(scala.collection.immutable.Seq<T> seq)
-
immutableIndexedSeq
public static <T> scala.collection.immutable.IndexedSeq<T> immutableIndexedSeq(java.lang.Iterable<T> iterable)
Turns anIterable
into an immutable Scala IndexedSeq (by copying it).
-
option
public static <T> scala.Option<T> option(java.util.Optional<T> jOption)
-
-