Uses of Interface
org.apache.camel.component.snakeyaml.TypeFilter
-
Packages that use TypeFilter Package Description org.apache.camel.component.snakeyaml -
-
Uses of TypeFilter in org.apache.camel.component.snakeyaml
Classes in org.apache.camel.component.snakeyaml that implement TypeFilter Modifier and Type Class Description static class
TypeFilters.RegExp
static class
TypeFilters.TypeName
Methods in org.apache.camel.component.snakeyaml that return TypeFilter Modifier and Type Method Description static TypeFilter
TypeFilters. allowAll()
static TypeFilter
TypeFilters. allowNone()
static TypeFilter
TypeFilters. regexp(String... patterns)
static TypeFilter
TypeFilters. regexp(Collection<String> patterns)
static TypeFilter
TypeFilters. typeNames(String... values)
static TypeFilter
TypeFilters. typeNames(Collection<String> values)
static TypeFilter
TypeFilters. types(Class<?>... values)
static TypeFilter
TypeFilters. types(Collection<Class<?>> values)
Methods in org.apache.camel.component.snakeyaml that return types with arguments of type TypeFilter Modifier and Type Method Description List<TypeFilter>
SnakeYAMLDataFormat. getTypeFilters()
static Optional<TypeFilter>
TypeFilters. valueOf(String definition)
Methods in org.apache.camel.component.snakeyaml with parameters of type TypeFilter Modifier and Type Method Description void
SnakeYAMLDataFormat. addTypeFilters(TypeFilter... typeFilters)
Method parameters in org.apache.camel.component.snakeyaml with type arguments of type TypeFilter Modifier and Type Method Description void
SnakeYAMLDataFormat. addTypeFilters(Collection<TypeFilter> typeFilters)
void
SnakeYAMLDataFormat. setTypeFilters(List<TypeFilter> typeFilters)
Set the types SnakeYAML is allowed to un-marshall
-