Package org.tquadrat.foundation.config
Annotation Interface StringConversion
@ClassVersion(sourceVersion="$Id: StringConversion.java 1002 2022-02-01 21:33:00Z tquadrat $")
@Documented
@Retention(CLASS)
@Target(METHOD)
@API(status=STABLE,
since="0.1.0")
public @interface StringConversion
This annotation defines the implementation of
StringConverter
that is used to convert the value of annotated property into a String, or
a String into the value.
If not applied, an attempt is made to derive the respective implementation from the type of the property; if this fails, no String conversion is used.
If the relevant StringConverter
is implemented in the current
project, it always has to be specified with this annotation, even when it
is published as a service.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: StringConversion.java 1002 2022-02-01 21:33:00Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.StringConversion"
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass
<? extends StringConverter<?>> The class of theStringConverter
implementation.
-
Element Details
-
value
Class<? extends StringConverter<?>> valueThe class of theStringConverter
implementation.- Returns:
- The String converter class.
-