Strategy
The reason being that I suspect most people are taught to implement it using a class and a method.
Consider the following Haskell code:
ascending = sortBy compare somelist
descending = sortBy (flip compare) somelist
pairsBySecondComponent = sortBy (comparing snd) somelist
That's the strategy pattern in action: compare, (flip compare) and (comparing snd) are the concrete strategies in this case (they're plain old functions), and the function signature a -> a -> Ordering is the strategy "interface".
The brevity of this illustrates that design patterns don't have to be so heavyweight or bulky. The way you want to implement Strategy in Java (interface, classes) is not a good way. It's a way that works around Java giving you the wrong abstractions for the job you need to do. This should not be considered normal or acceptable.
For that reason, assuming my assumption about the way it's taught is correct, I don't like the Strategy pattern very much.
There are some of other patterns which are also specific instances of the general "Function Pointer" pattern. I don't like them very much either, for very much the same reasons.