Interface MethodParameterInfo
public sealed interface MethodParameterInfo
Models a single method parameter in the
MethodParametersAttribute
.- Since:
- 24
-
Method Summary
Modifier and TypeMethodDescriptiondefault Set
<AccessFlag> flags()
Parameter access flags for this parameter.int
Parameter access flags for this parameter, as a bit mask.default boolean
has
(AccessFlag flag) Returns whether the method parameter has a specific flag set.name()
The name of the method parameter, if there is one.static MethodParameterInfo
Returns a method parameter description.static MethodParameterInfo
of
(Optional<String> name, AccessFlag... flags) Returns a method parameter description.static MethodParameterInfo
ofParameter
(Optional<String> name, int flags) Returns a method parameter description.
-
Method Details
-
name
-
flagsMask
int flagsMask()Parameter access flags for this parameter, as a bit mask. Valid parameter flags includeClassFile.ACC_FINAL
,ClassFile.ACC_SYNTHETIC
, andClassFile.ACC_MANDATED
.- Returns:
- the access flags, as a bit mask
-
flags
Parameter access flags for this parameter.- Returns:
- the access flags, as a bit mask
-
has
Returns whether the method parameter has a specific flag set.- Parameters:
flag
- the method parameter flag- Returns:
- whether the method parameter has a specific flag set
-
of
Returns a method parameter description.- Parameters:
name
- the method parameter nameflags
- the method parameter access flags- Returns:
- a method parameter description
-
of
Returns a method parameter description.- Parameters:
name
- the method parameter nameflags
- the method parameter access flags- Returns:
- a method parameter description
-
ofParameter
Returns a method parameter description.- Parameters:
name
- the method parameter nameflags
- the method parameter access flags- Returns:
- a method parameter description
-