I want to get tweets of my home timeline BUT NOT those tweets which I made as a reply (not retweet) on some other tweet. I crawled the whole Spring Twitter API but could not find a way to check if the Tweet object is a reply to another tweet or at least retrieve only tweets which are NOT a reply.
Tweet Class has those boolean getter:
boolean isFavorited()
boolean isRetweet()
boolean isRetweeted()
Now I do miss a boolean isReply()
Does anybody has an idea how to check this or retrieve non-reply tweets?