@Retention(value=RUNTIME)
@Target(value={PARAMETER,ANNOTATION_TYPE})
public @interface NamedFormats
NamedFormat).NamedFormat.name() in this set should match
a field of this bean.Table annotated parameter of a step method.
class CoffeeWithPrice {
String name;
double price_in_EUR;
Date lastPriceDate;
CoffeeWithPrice(String name, double priceInEur, Date lastPriceDate) {
this.name = name;
this.price_in_EUR = priceInEur;
this.lastPriceDate = lastPriceDate;
}
}
{@code| Modifier and Type | Optional Element and Description |
|---|---|
NamedFormat[] |
value
Array of
NamedFormat |
public abstract NamedFormat[] value
NamedFormat