Uses of Class
cloud.opencode.base.reflect.invokable.MethodSignature
Packages that use MethodSignature
-
Uses of MethodSignature in cloud.opencode.base.reflect.invokable
Methods in cloud.opencode.base.reflect.invokable that return MethodSignatureModifier and TypeMethodDescriptionstatic MethodSignatureCreates a MethodSignature from a Method, extracting name, parameter types, and return type 从Method创建MethodSignature,提取名称、参数类型和返回类型static MethodSignatureCreates a MethodSignature from name and parameter types (no return type) 从名称和参数类型创建MethodSignature(不包含返回类型)static MethodSignatureMethodSignature.withReturnType(String name, Class<?> returnType, Class<?>... parameterTypes) Creates a MethodSignature from name, return type, and parameter types 从名称、返回类型和参数类型创建MethodSignatureMethods in cloud.opencode.base.reflect.invokable with parameters of type MethodSignatureModifier and TypeMethodDescriptionbooleanMethodSignature.isOverrideCompatible(MethodSignature superSignature) Checks if this signature is override-compatible with the given super signature.booleanMethodSignature.matches(MethodSignature other) Checks if this signature matches the given signature (name + parameter types) 检查此签名是否匹配给定签名(名称 + 参数类型)