Packages

c

org.opalj.br

JVMField

sealed abstract class JVMField extends ClassMember with Ordered[JVMField]

Represents a single field declaration/definition.

Source
Field.scala
Note

Fields, which are directly created, have no link to "their defining" ClassFile. This link is implicitly established when a method is added to a ClassFile. This operation also updates the field object.

,

Identity (w.r.t. equals/hashCode) is intentionally by reference (default behavior).

Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JVMField
  2. Ordered
  3. Comparable
  4. ClassMember
  5. ConcreteSourceElement
  6. SourceElement
  7. CommonSourceElementAttributes
  8. CommonAttributes
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def accessFlags: Int

    This field's access flags.

    This field's access flags. To analyze the access flags bit vector use org.opalj.bi.AccessFlag or org.opalj.bi.AccessFlagsIterator or use pattern matching.

    Definition Classes
    JVMFieldConcreteSourceElement
  2. abstract def attributes: Attributes

    The defined attributes.

    The defined attributes. The JVM 8 specification defines the following attributes for fields: * ConstantValue, * Synthetic, * Signature, * Deprecated, * RuntimeVisibleAnnotationTable, * RuntimeInvisibleAnnotationTable, * RuntimeVisibleTypeAnnotationTable and * RuntimeInvisibleTypeAnnotationTable.

    Definition Classes
    JVMFieldCommonAttributes
  3. abstract def fieldType: FieldType

    The (erased) type of this field.

  4. abstract def name: String

    The name of this field.

    The name of this field. The name is interned (see String.intern() for details.) Note, that this name is not required to be a valid Java programming language identifier.

    Definition Classes
    JVMFieldClassMember

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def <(that: JVMField): Boolean
    Definition Classes
    Ordered
  4. def <=(that: JVMField): Boolean
    Definition Classes
    Ordered
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >(that: JVMField): Boolean
    Definition Classes
    Ordered
  7. def >=(that: JVMField): Boolean
    Definition Classes
    Ordered
  8. def annotations: Annotations

    The list of all annotations.

    The list of all annotations. In general, if a specific annotation is searched for the method runtimeVisibleAnnotations or runtimeInvisibleAnnotations should be used.

    Definition Classes
    CommonSourceElementAttributes
  9. def asClassFile: ClassFile
    Definition Classes
    SourceElement
  10. def asField: Field
    Definition Classes
    SourceElement
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def asMethod: Method
    Definition Classes
    SourceElement
  13. def asVirtualField(declaringClassType: ObjectType): VirtualField
  14. final def asVirtualField(declaringClassFile: ClassFile): VirtualField
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  16. def compare(other: JVMField): Int

    Defines an absolute order on Field objects w.r.t.

    Defines an absolute order on Field objects w.r.t. their names and types. The order is defined by first lexicographically comparing the names of the fields and – if the names are identical – by comparing the types.

    Definition Classes
    JVMField → Ordered
  17. def compareAttributes(other: Attributes, config: SimilarityTestConfiguration): Option[AnyRef]

    Compares this element's attributes with the given one.

    Compares this element's attributes with the given one.

    returns

    None, if both attribute lists are similar; Some(<description of the difference>) otherwise.

    Attributes
    protected[this]
    Definition Classes
    CommonAttributes
  18. def compareTo(that: JVMField): Int
    Definition Classes
    Ordered → Comparable
  19. def constantFieldValue: Option[ConstantFieldValue[_]]

    Returns this field's constant value.

  20. def copy(accessFlags: Int = this.accessFlags, name: String = this.name, fieldType: FieldType = this.fieldType, attributes: Attributes = this.attributes): FieldTemplate
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  23. def fieldTypeSignature: Option[FieldTypeSignature]

    Returns this field's type signature.

  24. final def foreachTypeAnnotation[U](f: (TypeAnnotation) => U): Unit
    Definition Classes
    CommonAttributes
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  26. final def hasDefaultVisibility: Boolean
    Definition Classes
    ClassMember
  27. def hasFlags(accessFlags: Int): Boolean
    Definition Classes
    ConcreteSourceElement
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  29. def isClass: Boolean
    Definition Classes
    SourceElement
  30. def isDeprecated: Boolean

    Returns true if this (field, method, class) declaration is declared as deprecated.

    Returns true if this (field, method, class) declaration is declared as deprecated.

    Note

    The deprecated attribute is always set by the Java compiler when either the deprecated annotation or the JavaDoc tag is used.

    Definition Classes
    CommonSourceElementAttributes
  31. def isField: Boolean
    Definition Classes
    SourceElement
  32. final def isFinal: Boolean
    Definition Classes
    ClassMember
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def isMethod: Boolean
    Definition Classes
    SourceElement
  35. final def isNotFinal: Boolean
    Definition Classes
    ClassMember
  36. final def isNotStatic: Boolean
    Definition Classes
    ClassMember
  37. final def isPackagePrivate: Boolean
    Definition Classes
    ClassMember
  38. final def isPrivate: Boolean
    Definition Classes
    ClassMember
  39. final def isProtected: Boolean
    Definition Classes
    ClassMember
  40. final def isPublic: Boolean
    Definition Classes
    ClassMember
  41. final def isStatic: Boolean
    Definition Classes
    ClassMember
  42. final def isSynthetic: Boolean

    True if the Synthetic access flag or attribute is used.

    True if the Synthetic access flag or attribute is used.

    Definition Classes
    ClassMemberCommonSourceElementAttributes
  43. def isTransient: Boolean
  44. def isVirtual: Boolean
    Definition Classes
    SourceElement
  45. def isVolatile: Boolean
  46. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  48. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  49. def runtimeInvisibleAnnotations: Annotations
  50. def runtimeInvisibleTypeAnnotations: TypeAnnotations
    Definition Classes
    CommonAttributes
  51. def runtimeVisibleAnnotations: Annotations
  52. def runtimeVisibleTypeAnnotations: TypeAnnotations
    Definition Classes
    CommonAttributes
  53. def signatureToJava(withAccessFlags: Boolean = false): String
  54. def similar(other: JVMField, config: SimilarityTestConfiguration): Boolean

    Compares this field with the given one for structural equality.

    Compares this field with the given one for structural equality.

    Two fields are structurally equal if they have the same names, flags, type and attributes. In the latter case, the order doesn't matter!

  55. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  56. def toString(): String
    Definition Classes
    JVMField → AnyRef → Any
  57. def visibilityModifier: Option[VisibilityModifier]
    Definition Classes
    ConcreteSourceElement
  58. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  59. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Ordered[JVMField]

Inherited from Comparable[JVMField]

Inherited from ClassMember

Inherited from ConcreteSourceElement

Inherited from SourceElement

Inherited from CommonAttributes

Inherited from AnyRef

Inherited from Any

Ungrouped