Skip to content

Tag: java

Android Studio calculate total price

I wanna ask how can I sum all patty price and display in the total ? The total is in activity_main.xml layout while all the product price is in view_product.xml . Screenshot of app As you can see the grey color text is per patty price , and the right side black text is price after multiply the quantity of

Guava Maps.difference with wildcard

I want to use Guava’s Maps.difference in java 11 to verify data from Json String which I mapped into a Map. What I have after a call (with different uid each time) : I want to verify that uid is correctly generated and name is “Jean” using a pattern like this : Of course Maps.difference retu…

Reactive – Improve Mono syntax

I have this block of code that works fine: To summarize it: calls the isBlacklistedToken function (returns a Mono<Boolean> with the result of the refresh token) If the refresh token is blacklisted, throws an UnauthorizedException If the refresh token is not blacklisted, does the same process for the acc…