Pretty straightforward, but I just want to know which is faster.
I think simply multiplying a number by -1 is much faster than calling a predefined meth
I would suggest picking the method that more clearly shows your intention, rather than worrying about the performance. In this case, the performance gain of multiplying by -1 is probably minimal.
When you use Math.abs(), it is very clear that you want a positive value. When you use * -1 it is not clear, and requires more investigation to determine if the input value is always negative.