Uses of Interface
com.speedment.runtime.compute.ToEnum
-
Packages that use ToEnum 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 ToEnum in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToEnum Modifier and Type Method Description default ToEnum<T,E>ToEnum. map(UnaryOperator<E> mapper)static <T,E extends Enum<E>>
ToEnum<T,E>ToEnum. of(Class<E> enumClass, Function<T,E> lambda)Returns a typedToEnum<T>using the providedlambda.default ToEnum<T,E>ToEnumNullable. orElse(E value)default ToEnum<T,E>ToEnumNullable. orElseGet(ToEnum<T,E> getter)default ToEnum<T,E>ToEnumNullable. orThrow()Methods in com.speedment.runtime.compute with parameters of type ToEnum Modifier and Type Method Description default ToEnum<T,E>ToEnumNullable. orElseGet(ToEnum<T,E> getter) -
Uses of ToEnum in com.speedment.runtime.compute.expression.orelse
Subinterfaces of ToEnum in com.speedment.runtime.compute.expression.orelse Modifier and Type Interface Description interfaceToEnumOrElse<T,E extends Enum<E>>SpecializedNonNullableExpressionforEnumvalues where a default value is given if the original expression returnsnull.interfaceToEnumOrElseGet<T,E extends Enum<E>>SpecializedNonNullableExpressionfordoublevalues where a getter function is applied if the original expression returnsnull.interfaceToEnumOrThrow<T,E extends Enum<E>>SpecializedNonNullableExpressionforEnumvalues where aNullPointerExceptionis thrown if the original expression returnsnull.
-