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

io.vertx.ext.web.validation.builder.TupleParserFactory 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.List;

/**
 * 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 TupleParserFactory { @GenIgnore(GenIgnore.PERMITTED_TYPE) ValueParser newTupleParser(List> itemsParser, ValueParser additionalItemsParser); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy