org.powerscala.reflect

EnhancedField

Related Doc: package reflect

class EnhancedField extends AnyRef

EnhancedField wraps a java.lang.reflect.Field to provide more functionality and easier access.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. EnhancedField
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EnhancedField(parent: EnhancedClass, declaring: EnhancedClass, javaField: Field)

    Attributes
    protected[org.powerscala.reflect]

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 absoluteSignature: String

  5. def apply[T](instance: AnyRef, computeIfLazy: Boolean = false): T

    Retrieves the value for this field from the supplied instance.

    Retrieves the value for this field from the supplied instance.

    T

    the return type of this field.

    instance

    to extract the field value from.

    computeIfLazy

    as the name suggests will compute the lazy value before retrieving if this field is lazy. Defaults to false.

    returns

    the value of the field as T.

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def computeLazy(instance: AnyRef): Unit

  9. val declaring: EnhancedClass

  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  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 hasType(c: Class[_]): Boolean

    Returns true if c is extended or mixed in to the return type of this field.

    Returns true if c is extended or mixed in to the return type of this field.

  15. def hashCode(): Int

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

    Definition Classes
    Any
  17. def isLazy: Boolean

    True if this field is lazy.

  18. def isNative: Boolean

    True if this is a native field.

  19. def isStatic: Boolean

    True if this is a static field.

  20. val javaField: Field

  21. def name: String

    The field name.

  22. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  25. val parent: EnhancedClass

  26. lazy val returnType: EnhancedClass

    The type of the field.

  27. def signature: String

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

    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped