Class FieldInfo

    • Field Detail

      • desc

        private java.lang.String desc
        The field descriptor for this field.
      • signature

        private java.lang.String signature
        The signature for this field.
      • value

        private java.lang.Object value
        The initial value of this field.
    • Constructor Detail

      • FieldInfo

        public FieldInfo​(int access,
                         java.lang.String name,
                         java.lang.String desc,
                         java.lang.String signature,
                         java.lang.Object value)
        Create a new FieldInfo
        Parameters:
        access - The access flags.
        name - The name of the field.
        desc - The field discriptor.
        signature - The signature of this field.
        value - The initial value of the field.
    • Method Detail

      • getDesc

        public final java.lang.String getDesc()
        Get the descriptor for this FieldInfo.
        Returns:
        The field descriptor.
      • getSignature

        public final java.lang.String getSignature()
        Get the signature for this fieldinfo.
        Returns:
        The signature.
      • getValue

        public final java.lang.Object getValue()
        Get the initial value for this fieldinfo
        Returns:
        The initial value.