case class Pages(current: Page, totalPages: Int) extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Pages
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def after(k: Int): Range
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def before(k: Int): Range
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- val current: Page
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hasNext: Boolean
- returns
true if this page has a next page without wrapping. That is simply, if this page is not the last page.
-
def
hasPrevious: Boolean
- returns
true if this page has a previous page without wrapping. That is simply, if this page > FirstPage
-
def
isFirst: Boolean
- returns
true if this is the first page
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isLast: Boolean
- returns
true if this page is the lastpage
- def isMultiple: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def next(k: Int): Seq[Page]
-
def
next: Page
- returns
a Page object representing the next page.
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
previous(k: Int): Seq[Page]
- returns
a seq of Pages containing up to k previous pages. Eg, if this was page 4, then previous(2) would return a Seq of Pages for page 2, and page 3.
-
def
previous: Page
- returns
a Page object representing the previous page.
- def range(k: Int): Seq[Page]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val totalPages: Int
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )