Class FieldNode

java.lang.Object
org.objectweb.asm.FieldVisitor
org.objectweb.asm.tree.FieldNode

public class FieldNode extends org.objectweb.asm.FieldVisitor
A node that represents a field.
  • Field Details

    • access

      public int access
      The field's access flags (see Opcodes). This field also indicates if the field is synthetic and/or deprecated.
    • name

      public String name
      The field's name.
    • desc

      public String desc
      The field's descriptor (see Type).
    • signature

      public String signature
      The field's signature. May be null.
    • value

      public Object value
      The field's initial value. This field, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
    • visibleAnnotations

      public List<AnnotationNode> visibleAnnotations
      The runtime visible annotations of this field. May be null.
    • invisibleAnnotations

      public List<AnnotationNode> invisibleAnnotations
      The runtime invisible annotations of this field. May be null.
    • visibleTypeAnnotations

      public List<TypeAnnotationNode> visibleTypeAnnotations
      The runtime visible type annotations of this field. May be null.
    • invisibleTypeAnnotations

      public List<TypeAnnotationNode> invisibleTypeAnnotations
      The runtime invisible type annotations of this field. May be null.
    • attrs

      public List<org.objectweb.asm.Attribute> attrs
      The non standard attributes of this field. * May be null.
  • Constructor Details

    • FieldNode

      public FieldNode(int access, String name, String descriptor, String signature, Object value)
      Constructs a new FieldNode. Subclasses must not use this constructor. Instead, they must use the FieldNode(int, int, String, String, String, Object) version.
      Parameters:
      access - the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated.
      name - the field's name.
      descriptor - the field's descriptor (see Type).
      signature - the field's signature.
      value - the field's initial value. This parameter, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
      Throws:
      IllegalStateException - If a subclass calls this constructor.
    • FieldNode

      public FieldNode(int api, int access, String name, String descriptor, String signature, Object value)
      Constructs a new FieldNode.
      Parameters:
      api - the ASM API version implemented by this visitor. Must be one of the ASMx values in Opcodes.
      access - the field's access flags (see Opcodes). This parameter also indicates if the field is synthetic and/or deprecated.
      name - the field's name.
      descriptor - the field's descriptor (see Type).
      signature - the field's signature.
      value - the field's initial value. This parameter, which may be null if the field does not have an initial value, must be an Integer, a Float, a Long, a Double or a String.
  • Method Details

    • visitAnnotation

      public org.objectweb.asm.AnnotationVisitor visitAnnotation(String descriptor, boolean visible)
      Overrides:
      visitAnnotation in class org.objectweb.asm.FieldVisitor
    • visitTypeAnnotation

      public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, String descriptor, boolean visible)
      Overrides:
      visitTypeAnnotation in class org.objectweb.asm.FieldVisitor
    • visitAttribute

      public void visitAttribute(org.objectweb.asm.Attribute attribute)
      Overrides:
      visitAttribute in class org.objectweb.asm.FieldVisitor
    • visitEnd

      public void visitEnd()
      Overrides:
      visitEnd in class org.objectweb.asm.FieldVisitor
    • check

      public void check(int api)
      Checks that this field node is compatible with the given ASM API version. This method checks that this node, and all its children recursively, do not contain elements that were introduced in more recent versions of the ASM API than the given version.
      Parameters:
      api - an ASM API version. Must be one of the ASMx values in Opcodes.
    • accept

      public void accept(org.objectweb.asm.ClassVisitor classVisitor)
      Makes the given class visitor visit this field.
      Parameters:
      classVisitor - a class visitor.