Interface ClassModel

All Superinterfaces:
AttributedElement, ClassFileElement, CompoundElement<ClassElement>, Iterable<ClassElement>

public sealed interface ClassModel extends CompoundElement<ClassElement>, AttributedElement
Models a classfile. The contents of the classfile can be traversed via a streaming view, or via random access (e.g., flags()), or by freely mixing the two.
Since:
24
  • Method Details

    • constantPool

      ConstantPool constantPool()
      Returns the constant pool for this class.
      Returns:
      the constant pool for this class
    • flags

      AccessFlags flags()
      Returns the access flags.
      Returns:
      the access flags
    • thisClass

      ClassEntry thisClass()
      Returns the constant pool entry describing the name of this class.
      Returns:
      the constant pool entry describing the name of this class
    • majorVersion

      int majorVersion()
      Returns the major classfile version.
      Returns:
      the major classfile version
    • minorVersion

      int minorVersion()
      Returns the minor classfile version.
      Returns:
      the minor classfile version
    • fields

      List<FieldModel> fields()
      Returns the fields of this class.
      Returns:
      the fields of this class
    • methods

      List<MethodModel> methods()
      Returns the methods of this class.
      Returns:
      the methods of this class
    • superclass

      Optional<ClassEntry> superclass()
      Returns the superclass of this class, if there is one.
      Returns:
      the superclass of this class, if there is one
    • interfaces

      List<ClassEntry> interfaces()
      Returns the interfaces implemented by this class.
      Returns:
      the interfaces implemented by this class
    • isModuleInfo

      boolean isModuleInfo()
      Returns whether this class is a module descriptor.
      Returns:
      whether this class is a module descriptor