public interface MethodList
| Modifier and Type | Method and Description |
|---|---|
Method |
get(int n)
Get the
nth method. |
boolean |
isMutable()
Get whether this instance is mutable.
|
int |
size()
Get the number of methods in the list.
|
boolean isMutable()
MethodList interface itself doesn't provide any means
of mutation, but that doesn't mean that there isn't a non-interface
way of mutating an instance.true iff this instance is somehow mutableint size()
Method get(int n)
nth method.n - n >= 0, n < size(); which methodnon-null; the method in questionCopyright © 2020. All Rights Reserved.