Uses of Interface
com.speedment.runtime.compute.ToChar
-
Packages that use ToChar Package Description com.speedment.runtime.compute The Runtime Compute module adds a large number of functional interfaces to the Speedment system that allows computations to be performed on entities in a Stream without loosing metadata required by Speedment to optimize the stream.com.speedment.runtime.compute.expression.orelse -
-
Uses of ToChar in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToChar Modifier and Type Method Description default ToChar<T>ToChar. map(CharUnaryOperator operator)static <T> ToChar<T>ToChar. of(ToCharFunction<T> lambda)Returns a typedToChar<T>using the providedlambda.default ToChar<T>ToCharNullable. orElse(Character value)default ToChar<T>ToCharNullable. orElseGet(ToChar<T> getter)default ToChar<T>ToCharNullable. orThrow()default ToChar<T>ToChar. toLowerCase()default ToChar<T>ToChar. toUpperCase()Methods in com.speedment.runtime.compute with parameters of type ToChar Modifier and Type Method Description default ToChar<T>ToCharNullable. orElseGet(ToChar<T> getter) -
Uses of ToChar in com.speedment.runtime.compute.expression.orelse
Subinterfaces of ToChar in com.speedment.runtime.compute.expression.orelse Modifier and Type Interface Description interfaceToCharOrElse<T>SpecializedNonNullableExpressionforcharvalues where a default value is given if the original expression returnsnull.interfaceToCharOrElseGet<T>SpecializedNonNullableExpressionforcharvalues where a getter function is applied if the original expression returnsnull.interfaceToCharOrThrow<T>SpecializedNonNullableExpressionforcharvalues where aNullPointerExceptionis thrown if the original expression returnsnull.
-