In the reskinned Java SE 8 docs, what is the difference between concrete and instance methods?
A concrete method is a method that's not abstract.
An instance method is a method that's not static.
(Therefore, all static methods are concrete methods but are not instance methods.)
In simple words : Concrete - Static = Instance