Interface MethodModel
- All Superinterfaces:
AttributedElement
,ClassElement
,ClassFileElement
,CompoundElement<MethodElement>
,Iterable<MethodElement>
public sealed interface MethodModel
extends CompoundElement<MethodElement>, AttributedElement, ClassElement
Models a method. The contents of the method can be traversed via
a streaming view, or via random access (e.g.,
flags()
), or by freely mixing the two.- Since:
- 24
-
Method Summary
Modifier and TypeMethodDescriptioncode()
Returns the body of this method, if there is one.flags()
Returns the access flags.Returns the name of this method.Returns the method descriptor of this method.default MethodTypeDesc
Returns the method descriptor of this method, as a symbolic descriptor.parent()
Returns the class model this method is a member of, if known.Methods declared in interface java.lang.classfile.AttributedElement
attributes, findAttribute, findAttributes
Methods declared in interface java.lang.classfile.CompoundElement
elementList, elementStream, forEach, iterator, toDebugString
Methods declared in interface java.lang.Iterable
spliterator
-
Method Details
-
flags
-
parent
Optional<ClassModel> parent()Returns the class model this method is a member of, if known.- Returns:
- the class model this method is a member of, if known
-
methodName
-
methodType
Utf8Entry methodType()Returns the method descriptor of this method.- Returns:
- the method descriptor of this method
-
methodTypeSymbol
Returns the method descriptor of this method, as a symbolic descriptor.- Returns:
- the method descriptor of this method, as a symbolic descriptor
-
code
-