コード例 #1
0
ファイル: Connection.java プロジェクト: scotthernandez/RestFB
 /**
  * Does this connection have a next page of data?
  *
  * @return {@code true} if there is a next page of data for this connection, {@code false}
  *     otherwise.
  */
 public boolean hasNext() {
   return !StringUtils.isBlank(getNext());
 }
コード例 #2
0
ファイル: Connection.java プロジェクト: scotthernandez/RestFB
 /**
  * Does this connection have a previous page of data?
  *
  * @return {@code true} if there is a previous page of data for this connection, {@code false}
  *     otherwise.
  */
 public boolean hasPrevious() {
   return !StringUtils.isBlank(getPrevious());
 }