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. def jBiConsumer[T, U](code: (T, U) ⇒ Any): JBiConsumer[T, U]
  2. def jBiFunction[T, U, R](fun: (T, U) ⇒ R): JBiFunction[T, U, R]
  3. def jBiPredicate[T, U](pred: (T, U) ⇒ Boolean): JBiPredicate[T, U]
  4. def jBinaryOperator[T](op: (T, T) ⇒ T): JBinaryOperator[T]
  5. def jBooleanSupplier(expr: ⇒ Boolean): JBooleanSupplier
  6. def jConsumer[T](code: (T) ⇒ Any): JConsumer[T]
  7. def jDoubleBinaryOperator(op: (Double, Double) ⇒ Double): JDoubleBinaryOperator
  8. def jDoubleConsumer(code: (Double) ⇒ Any): JDoubleConsumer
  9. def jDoubleFunction[R](fun: (Double) ⇒ R): JDoubleFunction[R]
  10. def jDoublePredicate(pred: (Double) ⇒ Boolean): JDoublePredicate
  11. def jDoubleSupplier(expr: ⇒ Double): JDoubleSupplier
  12. def jDoubleToIntFunction(fun: (Double) ⇒ Int): JDoubleToIntFunction
  13. def jDoubleToLongFunction(fun: (Double) ⇒ Long): JDoubleToLongFunction
  14. def jDoubleUnaryOperator(op: (Double) ⇒ Double): JDoubleUnaryOperator
  15. def jFunction[T, R](fun: (T) ⇒ R): JFunction[T, R]
  16. def jIntBinaryOperator(op: (Int, Int) ⇒ Int): JIntBinaryOperator
  17. def jIntConsumer(code: (Int) ⇒ Any): JIntConsumer
  18. def jIntFunction[R](fun: (Int) ⇒ R): JIntFunction[R]
  19. def jIntPredicate(pred: (Int) ⇒ Boolean): JIntPredicate
  20. def jIntSupplier(expr: ⇒ Int): JIntSupplier
  21. def jIntToDoubleFunction(fun: (Int) ⇒ Double): JIntToDoubleFunction
  22. def jIntToLongFunction(fun: (Int) ⇒ Long): JIntToLongFunction
  23. def jIntUnaryOperator(op: (Int) ⇒ Int): JIntUnaryOperator
  24. def jLongBinaryOperator(op: (Long, Long) ⇒ Long): JLongBinaryOperator
  25. def jLongConsumer(code: (Long) ⇒ Any): JLongConsumer
  26. def jLongFunction[R](fun: (Long) ⇒ R): JLongFunction[R]
  27. def jLongPredicate(pred: (Long) ⇒ Boolean): JLongPredicate
  28. def jLongSupplier(expr: ⇒ Long): JLongSupplier
  29. def jLongToDoubleFunction(fun: (Long) ⇒ Double): JLongToDoubleFunction
  30. def jLongToIntFunction(fun: (Long) ⇒ Int): JLongToIntFunction
  31. def jLongUnaryOperator(op: (Long) ⇒ Long): JLongUnaryOperator
  32. def jObjDoubleConsumer[T](code: (T, Double) ⇒ Any): JObjDoubleConsumer[T]
  33. def jObjIntConsumer[T](code: (T, Int) ⇒ Any): JObjIntConsumer[T]
  34. def jObjLongConsumer[T](code: (T, Long) ⇒ Any): JObjLongConsumer[T]
  35. def jPredicate[T](pred: (T) ⇒ Boolean): JPredicate[T]
  36. def jSupplier[T](expr: ⇒ T): JSupplier[T]
  37. def jToDoubleBiFunction[T, U](fun: (T, U) ⇒ Double): JToDoubleBiFunction[T, U]
  38. def jToDoubleFunction[T](fun: (T) ⇒ Double): JToDoubleFunction[T]
  39. def jToIntBiFunction[T, U](fun: (T, U) ⇒ Int): JToIntBiFunction[T, U]
  40. def jToIntFunction[T](fun: (T) ⇒ Int): JToIntFunction[T]
  41. def jToLongBiFunction[T, U](fun: (T, U) ⇒ Long): JToLongBiFunction[T, U]
  42. def jToLongFunction[T](fun: (T) ⇒ Long): JToLongFunction[T]
  43. def jUnaryOperator[T](op: (T) ⇒ T): JUnaryOperator[T]