No, that's not a static variable. That's just a special syntax that allows you to get a reference to the enclosing class.
If it was a static variable, it would have the same value regardless of which object you were in, but it doesn't. It refers to the specific instance of OuterClassName that contains the current object.