Uses of Interface
com.speedment.runtime.compute.ToString
-
Packages that use ToString 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 Expression builders that can produce efficient and type-safe implementations of the interfaces in thecom.speedment.enterprise.aggregator.functionpackage.com.speedment.runtime.compute.expression.orelse -
-
Uses of ToString in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToString Modifier and Type Method Description default ToString<T>ToEnum. asName()Returns an alternative expression that represents theEnum.name()of the enum that would otherwise have been returned by this expression.default ToString<T>ToString. map(UnaryOperator<String> mapper)static <T> ToString<T>ToString. of(Function<T,String> lambda)Returns a typedToString<T>using the providedlambda.default ToString<T>ToStringNullable. orElse(String value)default ToString<T>ToStringNullable. orElseGet(ToString<T> getter)default ToString<T>ToStringNullable. orThrow()default ToString<T>ToString. toLowerCase()default ToString<T>ToString. toUpperCase()Methods in com.speedment.runtime.compute with parameters of type ToString Modifier and Type Method Description default ToString<T>ToStringNullable. orElseGet(ToString<T> getter) -
Uses of ToString in com.speedment.runtime.compute.expression
Subinterfaces of ToString in com.speedment.runtime.compute.expression Modifier and Type Interface Description interfaceJoiningExpression<T>A special type ofToStringexpression that joins several strings together using optionally a separator, a prefix and a suffix.Methods in com.speedment.runtime.compute.expression that return ToString Modifier and Type Method Description static <T> ToString<T>Expressions. joining(ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together, forming a single string.static <T> ToString<T>Expressions. joining(ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together with separators between them, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together with a separator between them, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, CharSequence prefix, CharSequence suffix, ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together with separators between them, with a prefix before the entire result and a suffix after it, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, CharSequence prefix, CharSequence suffix, ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together with a separator between them, with a prefix before the entire result and a suffix after it, forming a single string.Methods in com.speedment.runtime.compute.expression that return types with arguments of type ToString Modifier and Type Method Description List<ToString<T>>JoiningExpression. expressions()Returns an unmodifiable list of the expressions that are joined together in this expression.Methods in com.speedment.runtime.compute.expression with parameters of type ToString Modifier and Type Method Description static <T> ToString<T>Expressions. joining(ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together, forming a single string.static <T> ToString<T>Expressions. joining(ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together with separators between them, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together with a separator between them, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, CharSequence prefix, CharSequence suffix, ToString<T>... expressions)Returns an expression that represents the result of all the specified expressions joined together with separators between them, with a prefix before the entire result and a suffix after it, forming a single string.static <T> ToString<T>Expressions. joining(CharSequence separator, CharSequence prefix, CharSequence suffix, ToString<T> first, ToString<T> second)Returns an expression that represents the result of the two specified expressions joined together with a separator between them, with a prefix before the entire result and a suffix after it, forming a single string. -
Uses of ToString in com.speedment.runtime.compute.expression.orelse
Subinterfaces of ToString in com.speedment.runtime.compute.expression.orelse Modifier and Type Interface Description interfaceToStringOrElse<T>SpecializedNonNullableExpressionforStringvalues where a default value is given if the original expression returnsnull.interfaceToStringOrElseGet<T>SpecializedNonNullableExpressionforStringvalues where a getter function is applied if the original expression returnsnull.interfaceToStringOrThrow<T>SpecializedNonNullableExpressionforStringvalues where aNullPointerExceptionis thrown if the original expression returnsnull.
-