The basic idea of the JQuery functions is that they return a new (or the same) object for you to potentially call another method on. A similar approach it implemented in the .NET Framework's System.Linq namespace. Although that one makes use of extension methods, those are just a way to define additional methods for existing classes. An example:
foreach (var i in list.Skip(4).TakeWhile(x => x > 0).Select(x => x*x))
{
Console.WriteLine(i);
}
This skips the first four elements of the list, then iterates over the remaining elements until it either reaches the end of the list or an element that's not greater than zero. Each of the elements iterated over is squared and then returned by the iterator to be written to the console.
So, if you create your own classes in Java, simply let the methods return an object to call additional methods on. The StringBuilder/StringBuffer classes already do that with their Append methods by simply returning this.