
com.github.thorbenkuck.di.annotations.properties.PropertyName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-di-annotations Show documentation
Show all versions of wire-di-annotations Show documentation
Easy and simple di using annotation processors
The newest version!
package com.github.thorbenkuck.di.annotations.properties;
import java.lang.annotation.*;
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.PARAMETER, ElementType.FIELD})
@Inherited
public @interface PropertyName {
String value();
/**
* If true, the provided value will be formatted in accordance to the standard.
*
* If false, the value will be treated "as is" and not be adjusted for the property access.
*
* @return Whether the value should be formatted or used "as is".
*/
boolean format() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy