All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.web.validation.builder.ObjectParserFactory Maven / Gradle / Ivy

The newest version!
package io.vertx.ext.web.validation.builder;

import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.ext.web.validation.impl.parser.ValueParser;

import java.util.Map;
import java.util.regex.Pattern;

/**
 * This interface is used to create {@link ValueParser} able to parse serialized object structures. 
* * Look at {@link Parsers} for all available factories */ @VertxGen @FunctionalInterface public interface ObjectParserFactory { @GenIgnore ValueParser newObjectParser(Map> propertiesParser, Map> patternPropertiesParser, ValueParser additionalPropertiesParser); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy