| Package | Description |
|---|---|
| org.codehaus.janino |
The core of the Janino Java compiler.
|
| Modifier and Type | Method and Description |
|---|---|
static Parser.MethodDeclarationContext |
Parser.MethodDeclarationContext.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.MethodDeclarationContext[] |
Parser.MethodDeclarationContext.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Java.MethodDeclarator |
Parser.parseMethodDeclaration(boolean allowDefaultClause,
Parser.MethodDeclarationContext context)
MethodDeclaration :=
[ DocComment ] Modifiers [ TypeParameters ] VoidOrType Identifier MethodDeclarationRest
|
Java.MethodDeclarator |
Parser.parseMethodDeclarationRest(String docComment,
Java.Modifier[] modifiers,
Java.TypeParameter[] typeParameters,
Java.Type type,
String name,
boolean allowDefaultClause,
Parser.MethodDeclarationContext context)
MethodDeclarationRest :=
FormalParameters
{ '[' ']' }
[ 'throws' ReferenceTypeList ]
[ 'default' expression ]
( ';' | MethodBody )
|
Copyright © 2022. All rights reserved.