Does static private var result in faster performance compared to just private var?

I may not have been paying attention in Java class. But I know static uses less memory.

The thing is: I only have 1 instance of this particular Class on the stage. So, does adding static really make any difference in memory? Shouldn’t i then just put static for all of it’s private variables since it’s planned to have only 1 instance located there?