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

com.mercadopago.core.annotations.validation.Numeric Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.core.annotations.validation;

import java.lang.annotation.*;

/**
 * Mercado Pago SDK
 * Interface annotation for validate models.
 *
 * Created by Eduardo Paoletta on 11/21/16.
 */
@Inherited
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Numeric {
    float min() default Float.MIN_VALUE;
    float max() default Float.MAX_VALUE;
    int fractionDigits() default -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy