Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Been searching Google/stackoverflow with various terms but they all are way too broad to pinpoint what I'm trying to find.

I am just looking at some AWS API code and want to read up on how to create my own code like this, which, I'm assuming is passing parameters using a chaining style:

ListDomainsRequest sdbRequest = new ListDomainsRequest().withMaxNumberOfDomains(100);
                                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

as well as the use of the class keyword herein:

AwsConsoleApp.class.getResourceAsStream("AwsCredentials.properties")
              ^^^^^

What are the proper names for these techniques? Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

I think what you are referring to is the Fluent Interface. A quick wiki snip is...

A fluent interface is normally implemented by using method chaining to relay the instruction context of a subsequent call

Here is also a nice blog post by Adewale Oshineye giving some general thoughts on the subject as well.

[update] I just realized you question about class is separate from the first. For that you just need to realize that .class is a way to access the object's java.lang.Class type which is useful in certain cases.

share|improve this answer
So is this basically the convention of returning the object itself for every call to methods on the object? I'm way more familiar with jQuery and chaining is The Way; was mainly wondering if it's "enabled" by 'return this' internally...thx! – Brian May 24 '11 at 1:14
Ah, and yes, doing a return this is will get you the desired affect. – Andrew White May 24 '11 at 1:41

The second one is usually called a class literal, and it's just a feature of the Java language handled by the compiler. It ends up getting translated into a cached call to Class.forName().

The first one is just method chaining; the idea is that any method that returns the object it was called on can be chained together infinitely this way. Some people like it, some people think it's an abomination. The abomination contingent has gotten smaller over time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.