org.powerscala.property

PropertyGroup

Related Doc: package property

class PropertyGroup[T] extends ReadProperty[T] with WriteProperty[T]

PropertyGroup is a convenience wrapper around multiple properties of the same type.

Linear Supertypes
WriteProperty[T], (T) ⇒ Unit, ReadProperty[T], () ⇒ T, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PropertyGroup
  2. WriteProperty
  3. Function1
  4. ReadProperty
  5. Function0
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PropertyGroup(properties: List[Property[T]])

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def :=(value: T): Unit

    Definition Classes
    WriteProperty
  4. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  5. def and(property: Property[T]): PropertyGroup[T]

    Creates a new PropertyGroup adding in the supplied Property.

  6. def andThen[A](g: (Unit) ⇒ A): (T) ⇒ A

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  7. def apply(value: T): Unit

    Sets the supplied value to all properties in the group.

    Sets the supplied value to all properties in the group.

    Definition Classes
    PropertyGroup → Function1
  8. def apply(): T

    Retrieves the first value from this PropertyGroup or null if it is empty.

    Retrieves the first value from this PropertyGroup or null if it is empty.

    Definition Classes
    PropertyGroup → Function0
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. lazy val change: ProcessorGroup[PropertyChangeEvent[T], Unit, Unit]

  11. lazy val changing: ProcessorGroup[T, Option[T], Option[T]]

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def compose[A](g: (A) ⇒ T): (A) ⇒ Unit

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def get: Option[T]

    Returns Some[T] if all properties in the group are equal.

    Returns Some[T] if all properties in the group are equal. Otherwise None is returned.

  18. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  24. val properties: List[Property[T]]

  25. lazy val read: ProcessorGroup[PropertyRead, Unit, Unit]

  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    Function1 → AnyRef → Any
  28. def value: T

    Definition Classes
    ReadProperty
  29. def value_=(value: T): Unit

    Definition Classes
    WriteProperty
  30. def values: List[T]

    Retrieves all values from the properties in this group as a List.

  31. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from WriteProperty[T]

Inherited from (T) ⇒ Unit

Inherited from ReadProperty[T]

Inherited from () ⇒ T

Inherited from AnyRef

Inherited from Any

Ungrouped