Contents
Class JavaUtils
java.lang.Object
org.springframework.amqp.utils.JavaUtils
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescription<T> JavaUtils
acceptIfCondition
(boolean condition, @Nullable T value, Consumer<T> consumer) InvokeConsumer.accept(Object)
with the value if it is not null and the condition is true.<T1,
T2> JavaUtils acceptIfCondition
(boolean condition, T1 t1, T2 t2, BiConsumer<T1, T2> consumer) InvokeBiConsumer.accept(Object, Object)
with the arguments if the condition is true.acceptIfHasText
(@Nullable String value, Consumer<String> consumer) InvokeConsumer.accept(Object)
with the value if it is not null or empty.<T> JavaUtils
acceptIfHasText
(T t1, @Nullable String value, BiConsumer<T, String> consumer) InvokeBiConsumer.accept(Object, Object)
with the arguments if the value argument is not null or empty.<T> JavaUtils
acceptIfNotNull
(@Nullable T value, Consumer<T> consumer) InvokeConsumer.accept(Object)
with the value if it is not null.<T1,
T2> JavaUtils acceptIfNotNull
(T1 t1, @Nullable T2 t2, BiConsumer<T1, T2> consumer) InvokeBiConsumer.accept(Object, Object)
with the arguments if the t2 argument is not null.<T> JavaUtils
acceptOrElseIfNotNull
(@Nullable T value, @Nullable T alternative, Consumer<T> consumer) InvokeConsumer.accept(Object)
with the value or alternative if one of them is not null.
-
Field Details
-
Method Details
-
acceptIfCondition
InvokeConsumer.accept(Object)
with the value if it is not null and the condition is true.- Type Parameters:
T
- the value type.- Parameters:
condition
- the condition.value
- the value. Skipped if null.consumer
- the consumer.- Returns:
- this.
-
acceptIfNotNull
InvokeConsumer.accept(Object)
with the value if it is not null.- Type Parameters:
T
- the value type.- Parameters:
value
- the value.consumer
- the consumer.- Returns:
- this.
-
acceptIfHasText
InvokeConsumer.accept(Object)
with the value if it is not null or empty.- Parameters:
value
- the value.consumer
- the consumer.- Returns:
- this.
-
acceptIfCondition
public <T1,T2> JavaUtils acceptIfCondition(boolean condition, T1 t1, T2 t2, BiConsumer<T1, T2> consumer) InvokeBiConsumer.accept(Object, Object)
with the arguments if the condition is true.- Type Parameters:
T1
- the first argument type.T2
- the second argument type.- Parameters:
condition
- the condition.t1
- the first consumer argumentt2
- the second consumer argumentconsumer
- the consumer.- Returns:
- this.
-
acceptIfNotNull
InvokeBiConsumer.accept(Object, Object)
with the arguments if the t2 argument is not null.- Type Parameters:
T1
- the first argument type.T2
- the second argument type.- Parameters:
t1
- the first argumentt2
- the second consumer argumentconsumer
- the consumer.- Returns:
- this.
-
acceptIfHasText
InvokeBiConsumer.accept(Object, Object)
with the arguments if the value argument is not null or empty.- Type Parameters:
T
- the first argument type.- Parameters:
t1
- the first consumer argument.value
- the second consumer argumentconsumer
- the consumer.- Returns:
- this.
-
acceptOrElseIfNotNull
public <T> JavaUtils acceptOrElseIfNotNull(@Nullable T value, @Nullable T alternative, Consumer<T> consumer) InvokeConsumer.accept(Object)
with the value or alternative if one of them is not null.- Type Parameters:
T
- the value type.- Parameters:
value
- the value.alternative
- the other value if thevalue
argument is null.consumer
- the consumer.- Returns:
- this.
- Since:
- 4.0
-