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!
