akka.japi
Class Util$

java.lang.Object
  extended by akka.japi.Util$

public class Util$
extends java.lang.Object

This class hold common utilities for Java


Field Summary
static Util$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
Util$()
           
 
Method Summary
 scala.collection.Seq<java.lang.Class<?>> arrayToSeq(java.lang.Class<?>[] classes)
          Returns a Scala sequence representing the provided array of Classes, an overloading of the generic arrayToSeq in Util, to accommodate for erasure.
<T> scala.collection.Seq<T>
arrayToSeq(java.lang.Object arr)
          Turns an array into a Scala sequence.
<T> scala.reflect.ClassTag<T>
classTag(java.lang.Class<T> clazz)
          Returns a ClassTag describing the provided Class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final Util$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

Util$

public Util$()
Method Detail

classTag

public <T> scala.reflect.ClassTag<T> classTag(java.lang.Class<T> clazz)
Returns a ClassTag describing the provided Class.


arrayToSeq

public <T> scala.collection.Seq<T> arrayToSeq(java.lang.Object arr)
Turns an array into a Scala sequence.


arrayToSeq

public scala.collection.Seq<java.lang.Class<?>> arrayToSeq(java.lang.Class<?>[] classes)
Returns a Scala sequence representing the provided array of Classes, an overloading of the generic arrayToSeq in Util, to accommodate for erasure.