t

com.avsystem.commons.jiop

JFunctionUtils

trait JFunctionUtils extends AnyRef

Utils to convert Scala functions and expressions to most common Java functional interfaces.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JFunctionUtils
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type JBiConsumer[T, U] = BiConsumer[T, U]
  2. type JBiFunction[T, U, R] = BiFunction[T, U, R]
  3. type JBiPredicate[T, U] = BiPredicate[T, U]
  4. type JBinaryOperator[T] = BinaryOperator[T]
  5. type JBooleanSupplier = BooleanSupplier
  6. type JConsumer[T] = Consumer[T]
  7. type JDoubleBinaryOperator = DoubleBinaryOperator
  8. type JDoubleConsumer = DoubleConsumer
  9. type JDoubleFunction[R] = DoubleFunction[R]
  10. type JDoublePredicate = DoublePredicate
  11. type JDoubleSupplier = DoubleSupplier
  12. type JDoubleToIntFunction = DoubleToIntFunction
  13. type JDoubleToLongFunction = DoubleToLongFunction
  14. type JDoubleUnaryOperator = DoubleUnaryOperator
  15. type JFunction[T, R] = Function[T, R]
  16. type JIntBinaryOperator = IntBinaryOperator
  17. type JIntConsumer = IntConsumer
  18. type JIntFunction[R] = IntFunction[R]
  19. type JIntPredicate = IntPredicate
  20. type JIntSupplier = IntSupplier
  21. type JIntToDoubleFunction = IntToDoubleFunction
  22. type JIntToLongFunction = IntToLongFunction
  23. type JIntUnaryOperator = IntUnaryOperator
  24. type JLongBinaryOperator = LongBinaryOperator
  25. type JLongConsumer = LongConsumer
  26. type JLongFunction[R] = LongFunction[R]
  27. type JLongPredicate = LongPredicate
  28. type JLongSupplier = LongSupplier
  29. type JLongToDoubleFunction = LongToDoubleFunction
  30. type JLongToIntFunction = LongToIntFunction
  31. type JLongUnaryOperator = LongUnaryOperator
  32. type JObjDoubleConsumer[T] = ObjDoubleConsumer[T]
  33. type JObjIntConsumer[T] = ObjIntConsumer[T]
  34. type JObjLongConsumer[T] = ObjLongConsumer[T]
  35. type JPredicate[T] = Predicate[T]
  36. type JSupplier[T] = Supplier[T]
  37. type JToDoubleBiFunction[T, U] = ToDoubleBiFunction[T, U]
  38. type JToDoubleFunction[T] = ToDoubleFunction[T]
  39. type JToIntBiFunction[T, U] = ToIntBiFunction[T, U]
  40. type JToIntFunction[T] = ToIntFunction[T]
  41. type JToLongBiFunction[T, U] = ToLongBiFunction[T, U]
  42. type JToLongFunction[T] = ToLongFunction[T]
  43. type JUnaryOperator[T] = UnaryOperator[T]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def jBiConsumer[T, U](code: (T, U) ⇒ Any): JBiConsumer[T, U]
  13. def jBiFunction[T, U, R](fun: (T, U) ⇒ R): JBiFunction[T, U, R]
  14. def jBiPredicate[T, U](pred: (T, U) ⇒ Boolean): JBiPredicate[T, U]
  15. def jBinaryOperator[T](op: (T, T) ⇒ T): JBinaryOperator[T]
  16. def jBooleanSupplier(expr: ⇒ Boolean): JBooleanSupplier
  17. def jConsumer[T](code: (T) ⇒ Any): JConsumer[T]
  18. def jDoubleBinaryOperator(op: (Double, Double) ⇒ Double): JDoubleBinaryOperator
  19. def jDoubleConsumer(code: (Double) ⇒ Any): JDoubleConsumer
  20. def jDoubleFunction[R](fun: (Double) ⇒ R): JDoubleFunction[R]
  21. def jDoublePredicate(pred: (Double) ⇒ Boolean): JDoublePredicate
  22. def jDoubleSupplier(expr: ⇒ Double): JDoubleSupplier
  23. def jDoubleToIntFunction(fun: (Double) ⇒ Int): JDoubleToIntFunction
  24. def jDoubleToLongFunction(fun: (Double) ⇒ Long): JDoubleToLongFunction
  25. def jDoubleUnaryOperator(op: (Double) ⇒ Double): JDoubleUnaryOperator
  26. def jFunction[T, R](fun: (T) ⇒ R): JFunction[T, R]
  27. def jIntBinaryOperator(op: (Int, Int) ⇒ Int): JIntBinaryOperator
  28. def jIntConsumer(code: (Int) ⇒ Any): JIntConsumer
  29. def jIntFunction[R](fun: (Int) ⇒ R): JIntFunction[R]
  30. def jIntPredicate(pred: (Int) ⇒ Boolean): JIntPredicate
  31. def jIntSupplier(expr: ⇒ Int): JIntSupplier
  32. def jIntToDoubleFunction(fun: (Int) ⇒ Double): JIntToDoubleFunction
  33. def jIntToLongFunction(fun: (Int) ⇒ Long): JIntToLongFunction
  34. def jIntUnaryOperator(op: (Int) ⇒ Int): JIntUnaryOperator
  35. def jLongBinaryOperator(op: (Long, Long) ⇒ Long): JLongBinaryOperator
  36. def jLongConsumer(code: (Long) ⇒ Any): JLongConsumer
  37. def jLongFunction[R](fun: (Long) ⇒ R): JLongFunction[R]
  38. def jLongPredicate(pred: (Long) ⇒ Boolean): JLongPredicate
  39. def jLongSupplier(expr: ⇒ Long): JLongSupplier
  40. def jLongToDoubleFunction(fun: (Long) ⇒ Double): JLongToDoubleFunction
  41. def jLongToIntFunction(fun: (Long) ⇒ Int): JLongToIntFunction
  42. def jLongUnaryOperator(op: (Long) ⇒ Long): JLongUnaryOperator
  43. def jObjDoubleConsumer[T](code: (T, Double) ⇒ Any): JObjDoubleConsumer[T]
  44. def jObjIntConsumer[T](code: (T, Int) ⇒ Any): JObjIntConsumer[T]
  45. def jObjLongConsumer[T](code: (T, Long) ⇒ Any): JObjLongConsumer[T]
  46. def jPredicate[T](pred: (T) ⇒ Boolean): JPredicate[T]
  47. def jSupplier[T](expr: ⇒ T): JSupplier[T]
  48. def jToDoubleBiFunction[T, U](fun: (T, U) ⇒ Double): JToDoubleBiFunction[T, U]
  49. def jToDoubleFunction[T](fun: (T) ⇒ Double): JToDoubleFunction[T]
  50. def jToIntBiFunction[T, U](fun: (T, U) ⇒ Int): JToIntBiFunction[T, U]
  51. def jToIntFunction[T](fun: (T) ⇒ Int): JToIntFunction[T]
  52. def jToLongBiFunction[T, U](fun: (T, U) ⇒ Long): JToLongBiFunction[T, U]
  53. def jToLongFunction[T](fun: (T) ⇒ Long): JToLongFunction[T]
  54. def jUnaryOperator[T](op: (T) ⇒ T): JUnaryOperator[T]
  55. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  56. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  57. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  58. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  59. def toString(): String
    Definition Classes
    AnyRef → Any
  60. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  62. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped