Tagged Questions

8
votes
4answers
2k views

How to do method chaining in Java? o.m1().m2().m3().m4()

I've seen in many Java code notation that after a method we call another, here is an example. Toast.makeText(text).setGravity(Gravity.TOP, 0, 0).setView(layout).show(); As you see after calling ...
5
votes
3answers
697 views

Chaining order in Guava

I'm a bit new to Guava and it's style. I'm definitely digging it, but one thing I keep tripping over is the order of chained methods. Where I seem to have this problem the most is when using compound ...
5
votes
4answers
364 views

What would be considered good examples of implementing the builder pattern when used in the development of a GUI?

I am a complete newbie when it comes to the use of factory classes and methods, patterns, etc - in fact I first learned of them here on Stackoverflow when browsing Java related questions :-) In ...
5
votes
5answers
813 views

Method chaining + inheritance don’t play well together? (Java)

This question has been asked in a C++ context but I'm curious about Java. The concerns about virtual methods don't apply (I think), but if you have this situation: abstract class Pet { private ...
1
vote
1answer
77 views

Mockito - Stubbing a method of an object that was returned by a mock object method

Let's say I have an mock object, and I don't want to stub any of it's methods, but I want to stub a method of an object it returns. For example, when(mockObject.method1()).thenReturn(returnValue) ...
1
vote
4answers
97 views

Calling multiple methods in Java

I found a new way of calling multiple methods in Java and I don't really understands what's happening behind: public class NutritionFacts { private final int servingSize; private final int servings; ...
1
vote
1answer
202 views

Long method chains in Java and refactoring techniques

How do Java programmers deal with long method chains? Sometimes one or two methods will have results that depend on the same long method chains being called on a several objects and it seems like ...
1
vote
4answers
233 views

Java method call chaining in static context

In StringBuilder class I can do like this: StringBuilder sb = new StringBuilder(); sb.append( "asd").append(34); method append returns StringBuilder instance, and I can continuosly call that. My ...
1
vote
3answers
295 views

System.out.println - Is this method chaining in Java?

I am wondering about the the following piece of Java code: "System.out.println". I am right about this: "System" is a static class. ".out" is a method of class "System". This is the bit I am slighty ...
0
votes
5answers
73 views

Reusing class after calling static methods

Suppose I have a class with several static void methods, for example: class MyClass { public static void doJob() { // ... } public static void doSmthElse() { // ... } ...