Package io.quarkus.qute
Interface ParameterDeclaration
-
- All Known Implementing Classes:
ParameterDeclarationNode
public interface ParameterDeclarationRepresents a parameter declaration, i.e..
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressiongetDefaultValue()StringgetKey()The key forisfoo.TemplateNode.OrigingetOrigin()StringgetTypeInfo()The type info foris|org.acme.Foo|.
-
-
-
Method Detail
-
getTypeInfo
String getTypeInfo()
The type info foris|org.acme.Foo|.- Returns:
- the unparsed type info
- See Also:
Expression.Part.getTypeInfo()
-
getKey
String getKey()
The key forisfoo.- Returns:
- the key
-
getDefaultValue
Expression getDefaultValue()
- Returns:
- the default value or
nullif no default value is set
-
getOrigin
TemplateNode.Origin getOrigin()
- Returns:
- the origin of the template node
-
-