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

kz.greetgo.conf.hot.DefaultBoolValue Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package kz.greetgo.conf.hot;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;

/**
 * Perform default parameter value
 *
 * @author pompei
 */
@Documented
@Target({METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface DefaultBoolValue {

  /**
   * Perform default parameter value
   *
   * @return default parameter value
   */
  boolean value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy