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

io.norberg.automatter.AutoMatter Maven / Gradle / Ivy

There is a newer version: 0.26.2
Show newest version
package io.norberg.automatter;

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

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target(TYPE)
@Retention(RUNTIME)
public @interface AutoMatter {

  @Target({PARAMETER, METHOD})
  @Retention(RUNTIME)
  @interface Field {

    String value() default "";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy