Interface IDEmuMember


public interface IDEmuMember
An emulated Member object. An emulated member object can only represent a Field, Method, or Constructor reflection object.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Retrieve the member access flags.
    Retrieve the member name.
    Retrieve the member signature.
    boolean
    Determine whether this member represents a constructor.
    boolean
    Determine whether this member represents a field.
    boolean
    Determine whether this member represents a method.
  • Method Details

    • isField

      boolean isField()
      Determine whether this member represents a field.
      Returns:
      true for a field
    • isMethod

      boolean isMethod()
      Determine whether this member represents a method.
      Returns:
      true for a method
    • isConstructor

      boolean isConstructor()
      Determine whether this member represents a constructor.
      Returns:
      true for a constructor
    • getSignature

      String getSignature()
      Retrieve the member signature.
      Returns:
      the member signature
    • getName

      String getName()
      Retrieve the member name.
      Returns:
      the member name
    • getAccessFlags

      int getAccessFlags()
      Retrieve the member access flags.
      Returns:
      the access flags