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

io.dropwizard.validation.valuehandling.OptionalDoubleValidatedValueUnwrapper Maven / Gradle / Ivy

There is a newer version: 0.40.13
Show newest version
package io.dropwizard.validation.valuehandling;

import org.hibernate.validator.spi.valuehandling.ValidatedValueUnwrapper;

import java.lang.reflect.Type;
import java.util.OptionalDouble;

/**
 * A {@link ValidatedValueUnwrapper} for {@link OptionalDouble}.
 *
 * Extracts the value contained by the {@link OptionalDouble} for validation, or produces {@code null}.
 */
public class OptionalDoubleValidatedValueUnwrapper extends ValidatedValueUnwrapper {
    @Override
    public Object handleValidatedValue(final OptionalDouble optional) {
        return optional.isPresent() ? optional.getAsDouble() : null;
    }

    @Override
    public Type getValidatedValueType(final Type type) {
        return Double.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy