object Util
Ordering
- Alphabetic
- By Inheritance
Inherited
- Util
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
classTag[T](clazz: Class[T]): ClassTag[T]
Returns a ClassTag describing the provided Class.
-
def
immutableIndexedSeq[T](iterable: Iterable[T]): IndexedSeq[T]
Turns an java.lang.Iterable into an immutable Scala IndexedSeq (by copying it).
-
def
immutableSeq[T](iterable: Iterable[T]): Seq[T]
Turns an java.lang.Iterable into an immutable Scala sequence (by copying it).
-
def
immutableSeq[T](arr: Array[T]): Seq[T]
Turns an array into an immutable Scala sequence (by copying it).
-
def
immutableSeq(arr: Array[Class[_]]): Seq[Class[_]]
Returns an immutable.Seq representing the provided array of Classes, an overloading of the generic immutableSeq in Util, to accommodate for erasure.
- def immutableSingletonSeq[T](value: T): Seq[T]
- def javaArrayList[T](seq: Seq[T]): List[T]
- def option[T](jOption: Optional[T]): scala.Option[T]