io.vertx.mutiny.ext.web.validation.RequestParameter Maven / Gradle / Ivy
The newest version!
package io.vertx.mutiny.ext.web.validation;
import java.util.Map;
import java.util.stream.Collectors;
import io.smallrye.mutiny.Multi;
import io.smallrye.mutiny.Uni;
import io.smallrye.mutiny.vertx.TypeArg;
import io.vertx.codegen.annotations.Fluent;
import io.smallrye.common.annotation.CheckReturnValue;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
/**
* Request parameter holder
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.web.validation.RequestParameter original} non Mutiny-ified interface using Vert.x codegen.
*/
@io.smallrye.mutiny.vertx.MutinyGen(io.vertx.ext.web.validation.RequestParameter.class)
public class RequestParameter {
public static final io.smallrye.mutiny.vertx.TypeArg __TYPE_ARG = new io.smallrye.mutiny.vertx.TypeArg<>( obj -> new RequestParameter((io.vertx.ext.web.validation.RequestParameter) obj),
RequestParameter::getDelegate
);
private final io.vertx.ext.web.validation.RequestParameter delegate;
public RequestParameter(io.vertx.ext.web.validation.RequestParameter delegate) {
this.delegate = delegate;
}
public RequestParameter(Object delegate) {
this.delegate = (io.vertx.ext.web.validation.RequestParameter)delegate;
}
/**
* Empty constructor used by CDI, do not use this constructor directly.
**/
RequestParameter() {
this.delegate = null;
}
public io.vertx.ext.web.validation.RequestParameter getDelegate() {
return delegate;
}
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RequestParameter that = (RequestParameter) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
/**
* @return null if value is not a {@link java.lang.String}, otherwise it returns value
*/
public String getString() {
String ret = delegate.getString();
return ret;
}
/**
* @return true if value of this instance is a {@link java.lang.String} instance
*/
public boolean isString() {
boolean ret = delegate.isString();
return ret;
}
/**
* @return null if value is not a {@link java.lang.Number}, otherwise it returns value as {@link java.lang.Integer}
*/
public Integer getInteger() {
Integer ret = delegate.getInteger();
return ret;
}
/**
* @return null if value is not a {@link java.lang.Number}, otherwise it returns value as {@link java.lang.Long}
*/
public Long getLong() {
Long ret = delegate.getLong();
return ret;
}
/**
* @return null if value is not a {@link java.lang.Number}, otherwise it returns value as {@link java.lang.Float}
*/
public Float getFloat() {
Float ret = delegate.getFloat();
return ret;
}
/**
* @return null if value is not a {@link java.lang.Number}, otherwise it returns value as {@link java.lang.Double}
*/
public Double getDouble() {
Double ret = delegate.getDouble();
return ret;
}
/**
* @return true if value of this instance is a {@link java.lang.Number} instance
*/
public boolean isNumber() {
boolean ret = delegate.isNumber();
return ret;
}
/**
* @return null if value is not a {@link java.lang.Boolean}, otherwise it returns value
*/
public Boolean getBoolean() {
Boolean ret = delegate.getBoolean();
return ret;
}
/**
* @return true if value of this instance is a {@link java.lang.Boolean} instance
*/
public boolean isBoolean() {
boolean ret = delegate.isBoolean();
return ret;
}
/**
* @return
*/
public JsonObject getJsonObject() {
JsonObject ret = delegate.getJsonObject();
return ret;
}
/**
* @return true if value of this instance is a instance
*/
public boolean isJsonObject() {
boolean ret = delegate.isJsonObject();
return ret;
}
/**
* @return null if value is not a , otherwise it returns value
*/
public JsonArray getJsonArray() {
JsonArray ret = delegate.getJsonArray();
return ret;
}
/**
* @return true if value of this instance is a instance
*/
public boolean isJsonArray() {
boolean ret = delegate.isJsonArray();
return ret;
}
/**
* @return null if value is not a , otherwise it returns value
*/
public io.vertx.mutiny.core.buffer.Buffer getBuffer() {
io.vertx.mutiny.core.buffer.Buffer ret = io.vertx.mutiny.core.buffer.Buffer.newInstance((io.vertx.core.buffer.Buffer)delegate.getBuffer());
return ret;
}
/**
* @return true if value of this instance is a instance
*/
public boolean isBuffer() {
boolean ret = delegate.isBuffer();
return ret;
}
/**
* @return true if value is null
*/
public boolean isNull() {
boolean ret = delegate.isNull();
return ret;
}
/**
* @return True if it's an empty string, an empty json object/array, an empty buffer or it's null
*/
public boolean isEmpty() {
boolean ret = delegate.isEmpty();
return ret;
}
/**
* @return the internal value. The internal value is always a valid Vert.x JSON type
*/
public java.lang.Object get() {
if (cached_0 != null) {
return cached_0;
}
java.lang.Object ret = (Object) delegate.get();
cached_0 = ret;
return ret;
}
public static io.vertx.mutiny.ext.web.validation.RequestParameter create(java.lang.Object value) {
io.vertx.mutiny.ext.web.validation.RequestParameter ret = io.vertx.mutiny.ext.web.validation.RequestParameter.newInstance((io.vertx.ext.web.validation.RequestParameter)io.vertx.ext.web.validation.RequestParameter.create(value));
return ret;
}
private java.lang.Object cached_0;
public static RequestParameter newInstance(io.vertx.ext.web.validation.RequestParameter arg) {
return arg != null ? new RequestParameter(arg) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy