Uses of Interface
io.john.amiscaray.quak.data.update.UpdateExpression
Packages that use UpdateExpression
-
Uses of UpdateExpression in io.john.amiscaray.quak.data.update
Methods in io.john.amiscaray.quak.data.update that return UpdateExpressionModifier and TypeMethodDescriptionstatic UpdateExpression<Number> UpdateExpression.abs()Creates an update expression evaluating the absolute value of the current value.static <N extends Number>
UpdateExpression<N> UpdateExpression.add(N number) Creates an update expression adding a number onto the current value of the fieldstatic UpdateExpression<String> Creates an update expression appending a string to the current value.static <N extends Number>
UpdateExpression<Number> UpdateExpression.divide(N number) Creates an update expression dividing the field by the given number.static UpdateExpression<Double> UpdateExpression.ln()Creates an update expression evaluating the natural logarithm of the current value.static UpdateExpression<Double> Creates an update expression evaluating the current value log base n.static <N extends Number>
UpdateExpression<N> UpdateExpression.multiply(N number) Creates an update expression multiplying the field by the given number.static UpdateExpression<String> Creates an update expression prepending a string to the current value.static <N extends Number>
UpdateExpression<Double> UpdateExpression.raiseToThePowerOf(N number) Creates an update expression raising the value of a field by the power of the given number.static <V> UpdateExpression<V> UpdateExpression.setTo(V literal) Creates an update expression setting the value of a field to the given value.static UpdateExpression<Double> UpdateExpression.sqrt()Creates an update expression evaluating the square root of the current value.static UpdateExpression<String> UpdateExpression.subString(int startIndex) Creates an update expression evaluating a substring of the current value.static UpdateExpression<String> UpdateExpression.subString(int startIndex, int len) Creates an update expression evaluating a substring of the current value.static <N extends Number>
UpdateExpression<N> UpdateExpression.subtract(N number) Creates an update expression subtracting a number onto the current value of the field.static UpdateExpression<String> UpdateExpression.trim()Creates an update expression trimming the current value.static UpdateExpression<String> UpdateExpression.trimLeading()Creates an update expression trimming leading whitespace from the current value.static UpdateExpression<String> UpdateExpression.trimTrailing()Creates an update expression trimming trailing whitespace from the current value.Methods in io.john.amiscaray.quak.data.update that return types with arguments of type UpdateExpressionModifier and TypeMethodDescriptionFieldUpdate.updates()Returns the value of theupdatesrecord component.Methods in io.john.amiscaray.quak.data.update with parameters of type UpdateExpressionModifier and TypeMethodDescriptionFieldUpdate.FieldUpdateBuilder.apply(UpdateExpression<T> apply) Method parameters in io.john.amiscaray.quak.data.update with type arguments of type UpdateExpressionModifier and TypeMethodDescriptionFieldUpdate.FieldUpdateBuilder.updates(Collection<? extends UpdateExpression<T>> updates) Constructor parameters in io.john.amiscaray.quak.data.update with type arguments of type UpdateExpressionModifierConstructorDescriptionFieldUpdate(String fieldName, List<UpdateExpression<T>> updates) Creates an instance of aFieldUpdaterecord class.