scalafx.collections

ObservableIntegerArray

object ObservableIntegerArray extends ObservableArrayCompanionBase[Int, ObservableIntegerArray, javafx.collections.ObservableIntegerArray]

Companion Object for scalafx.collections.ObservableIntegerArray.

Linear Supertypes
ObservableArrayCompanionBase[Int, ObservableIntegerArray, javafx.collections.ObservableIntegerArray], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ObservableIntegerArray
  2. ObservableArrayCompanionBase
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def apply(v: Int*): ObservableIntegerArray

    Create new ObservableArray from a vararg list.

    Create new ObservableArray from a vararg list.

    v

    Value varargs.

    returns

    New ObservableArray storing v

    Definition Classes
    ObservableIntegerArray → ObservableArrayCompanionBase
  5. def apply(a: Array[Int]): ObservableIntegerArray

    Create new ObservableArray from an existing array.

    Create new ObservableArray from an existing array.

    a

    Array to be converted..

    returns

    New ObservableArray storing a.

    Definition Classes
    ObservableArrayCompanionBase
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def empty(): ObservableIntegerArray

    Return an empty ObservableArray

    Return an empty ObservableArray

    returns

    New empty ObservableArray

    Definition Classes
    ObservableArrayCompanionBase
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def fill(n: Int)(elem: ⇒ Int): ObservableIntegerArray

    Returns an observable array containing the results of some element computation.

    Returns an observable array containing the results of some element computation.

    Note that elem is computed n times in total; it is not simply calculated once and reused.

    n

    Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].fill function).

    elem

    Computation to be calculated for each element.

    returns

    Observable array of size n, with each element containing the result of computation elem.

    Definition Classes
    ObservableArrayCompanionBase
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def iterate(start: Int, n: Int)(f: (Int) ⇒ Int): ObservableIntegerArray

    Return an array returning repeated applications of a function to a start value.

    Return an array returning repeated applications of a function to a start value.

    start

    Start value of the array.

    n

    Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].iterate function).

    f

    Function to be repeatedly applied to previous element's value.

    returns

    Array containing elements start, f(start), f(f(start)), ....

    Definition Classes
    ObservableArrayCompanionBase
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  20. def ofDim(n: Int): ObservableIntegerArray

    Create an observable array with given dimension.

    Create an observable array with given dimension.

    n

    Size of the new array. This value cannot be negative.

    returns

    An observable array with the specified dimension and zeroed elements.

    Definition Classes
    ObservableArrayCompanionBase
    Exceptions thrown
    NegativeArraySizeException

    if n is negative.

  21. def range(start: Int, end: Int, step: Int = 1): ObservableIntegerArray

    Returns an array containing equally spaced values in some integer interval.

    Returns an array containing equally spaced values in some integer interval.

    start

    Start value of the array.

    end

    End value of the array, exclusive (that is, first value not included in array). If start exceeds end (>= end if step is positive or <= end if step is negative), then an empty array will result.

    step

    Increment value of the array. This value can be negative, but not zero. If omitted, this value defaults to 1.

    returns

    Observable array with values: start, start + step, start + 2 * step, ..., up to, but not including, end.

    Exceptions thrown
    IllegalArgumentException

    if step is 0.

  22. implicit def sfxObservableArray2jfxObservableArray(oa: ObservableIntegerArray): javafx.collections.ObservableIntegerArray

    Extract a JavaFX ObservableArray from a ScalaFX ObservableArray.

    Extract a JavaFX ObservableArray from a ScalaFX ObservableArray.

    oa

    ScalaFX ObservableArray.

    returns

    JavaFX ObservableArray inside parameter.

    Definition Classes
    ObservableArrayCompanionBase
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def tabulate(n: Int)(f: (Int) ⇒ Int): ObservableIntegerArray

    Returns an array containing the results of some element computation that takes the element index as an argument.

    Returns an array containing the results of some element computation that takes the element index as an argument.

    n

    Size of the new array. If this value is less than 1, an empty array is returned (matching the behavior of Scala's Array[T].tabulate function).

    f

    Function to be used to initialize element whose index is passed as an argument.

    returns

    Observable array of size n, with each element initialized by f.

    Definition Classes
    ObservableArrayCompanionBase
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ObservableArrayCompanionBase[Int, ObservableIntegerArray, javafx.collections.ObservableIntegerArray]

Inherited from AnyRef

Inherited from Any

Ungrouped