Uses of Interface
cloud.opencode.base.deepclone.FieldFilter
Packages that use FieldFilter
-
Uses of FieldFilter in cloud.opencode.base.deepclone
Methods in cloud.opencode.base.deepclone that return FieldFilterModifier and TypeMethodDescriptionstatic FieldFilterFieldFilter.acceptAll()Creates a filter that accepts all fields 创建接受所有字段的过滤器default FieldFilterFieldFilter.and(FieldFilter other) Returns a composed filter that represents a logical AND 返回表示逻辑AND的组合过滤器static FieldFilterFieldFilter.excludeAnnotated(Class<? extends Annotation> annotationType) Creates a filter that excludes fields annotated with the given annotation 创建排除具有指定注解字段的过滤器static FieldFilterFieldFilter.excludeNames(String... names) Creates a filter that excludes fields with the given names 创建排除指定名称字段的过滤器static FieldFilterFieldFilter.excludeTypes(Class<?>... types) Creates a filter that excludes fields of the given types 创建排除指定类型字段的过滤器static FieldFilterFieldFilter.includeNames(String... names) Creates a filter that only includes fields with the given names 创建仅包含指定名称字段的过滤器default FieldFilterFieldFilter.negate()Returns a filter that represents the logical negation 返回表示逻辑取反的过滤器default FieldFilterFieldFilter.or(FieldFilter other) Returns a composed filter that represents a logical OR 返回表示逻辑OR的组合过滤器Methods in cloud.opencode.base.deepclone with parameters of type FieldFilterModifier and TypeMethodDescriptiondefault FieldFilterFieldFilter.and(FieldFilter other) Returns a composed filter that represents a logical AND 返回表示逻辑AND的组合过滤器ClonerBuilder.filter(FieldFilter filter) Sets the field filter for programmatic field exclusion 设置编程式字段排除的字段过滤器default FieldFilterFieldFilter.or(FieldFilter other) Returns a composed filter that represents a logical OR 返回表示逻辑OR的组合过滤器 -
Uses of FieldFilter in cloud.opencode.base.deepclone.cloner
Fields in cloud.opencode.base.deepclone.cloner declared as FieldFilterModifier and TypeFieldDescriptionprotected FieldFilterAbstractCloner.fieldFilterField filter 字段过滤器Methods in cloud.opencode.base.deepclone.cloner that return FieldFilterMethods in cloud.opencode.base.deepclone.cloner with parameters of type FieldFilterModifier and TypeMethodDescriptionvoidAbstractCloner.setFieldFilter(FieldFilter fieldFilter) Sets the field filter 设置字段过滤器