Interface FunctionSymbol.Parameter
-
- Enclosing interface:
- FunctionSymbol
public static interface FunctionSymbol.Parameter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InferredTypedeclaredType()booleanhasDefaultValue()booleanisKeywordOnly()booleanisPositionalOnly()booleanisVariadic()LocationInFilelocation()Stringname()
-
-
-
Method Detail
-
name
@CheckForNull String name()
-
declaredType
InferredType declaredType()
-
hasDefaultValue
boolean hasDefaultValue()
-
isVariadic
boolean isVariadic()
-
isKeywordOnly
boolean isKeywordOnly()
-
isPositionalOnly
boolean isPositionalOnly()
-
location
@CheckForNull LocationInFile location()
-
-