unknown

fun unknown(functionKind: FunctionKind, contextName: String, processorName: String = UNKNOWN, functionName: String = UNKNOWN): FunctionInfoData

Creates a function info for an unknown or unspecified function.

This factory method is useful for creating placeholder function info when the actual function details are not available or need to be determined later. Unknown components default to "Unknown".

Return

A new FunctionInfoData instance with the specified or default values

Parameters

functionKind

The function kind (required)

contextName

The bounded context name (required)

processorName

The processor name (defaults to "Unknown")

functionName

The function name (defaults to "Unknown")

Samples