![JAR search and dependency download from the Maven repository](/logo.png)
lite.beans.ConstructorProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litebeans Show documentation
Show all versions of litebeans Show documentation
Libraries for Elasticsearch
The newest version!
package lite.beans;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Documented
@Target(CONSTRUCTOR)
@Retention(RUNTIME)
public @interface ConstructorProperties {
/**
* The getter names.
*
* @return the getter names corresponding to the parameters in the annotated constructor.
*/
String[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy