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

com.github.fashionbrot.annotation.Default Maven / Gradle / Ivy

The newest version!
package com.github.fashionbrot.annotation;


import java.lang.annotation.*;

/**
 * 是否设置默认值
 *
 * BigDecimal
 * BigInteger
 * Short
 * Integer
 * Long
 * Float
 * Double
 * String
 * CharSequence
 */
@Documented
@Target({ElementType.FIELD,  ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface Default {

    String  value() ;

    /**
     * default @see com.github.fashionbrot.groups.DefaultGroup
     * @return groups
     */
    Class[] groups() default  {};

    /**
     * ognl expression
     * @return String
     */
    String expression() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy