Uses of Class
cloud.opencode.base.expression.function.FunctionRegistry
Packages that use FunctionRegistry
Package
Description
OpenCode Expression Engine Package
OpenCode 表达式引擎包
Evaluation Context Package
求值上下文包
Expression Functions Package
表达式函数包
-
Uses of FunctionRegistry in cloud.opencode.base.expression
Methods in cloud.opencode.base.expression that return FunctionRegistryModifier and TypeMethodDescriptionstatic FunctionRegistryOpenExpression.functions()Get the global function registry 获取全局函数注册表 -
Uses of FunctionRegistry in cloud.opencode.base.expression.context
Methods in cloud.opencode.base.expression.context that return FunctionRegistryModifier and TypeMethodDescriptionBeanContext.getFunctionRegistry()ChainedContext.getFunctionRegistry()EvaluationContext.getFunctionRegistry()Get function registry 获取函数注册表MapContext.getFunctionRegistry()StandardContext.getFunctionRegistry()Methods in cloud.opencode.base.expression.context with parameters of type FunctionRegistryModifier and TypeMethodDescriptionBeanContext.Builder.functionRegistry(FunctionRegistry registry) Set function registry 设置函数注册表MapContext.Builder.functionRegistry(FunctionRegistry registry) Set function registry 设置函数注册表StandardContext.Builder.functionRegistry(FunctionRegistry registry) Set function registry 设置函数注册表Constructors in cloud.opencode.base.expression.context with parameters of type FunctionRegistryModifierConstructorDescriptionBeanContext(Object rootObject, FunctionRegistry functionRegistry, Sandbox sandbox) Create bean context with full customization 使用完整自定义创建 Bean 上下文MapContext(Map<String, Object> variables, FunctionRegistry functionRegistry, Sandbox sandbox) Create map context with full customization 使用完整自定义创建 Map 上下文StandardContext(Object rootObject, FunctionRegistry functionRegistry, List<PropertyAccessor> propertyAccessors, TypeConverter typeConverter, Sandbox sandbox, EvaluationContext parent) Create standard context with full customization 使用完整自定义创建标准上下文 -
Uses of FunctionRegistry in cloud.opencode.base.expression.function
Methods in cloud.opencode.base.expression.function that return FunctionRegistryModifier and TypeMethodDescriptionstatic FunctionRegistryFunctionRegistry.create()Create new registry with global functions 创建包含全局函数的新注册表static FunctionRegistryFunctionRegistry.empty()Create empty registry 创建空注册表static FunctionRegistryFunctionRegistry.getGlobal()Get global function registry 获取全局函数注册表Register a function 注册函数FunctionRegistry.registerAll(Map<String, Function> funcs) Register multiple functions 注册多个函数FunctionRegistry.unregister(String name) Unregister a function 注销函数