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

io.cucumber.java.DefaultDataTableCellTransformer Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package io.cucumber.java;

import org.apiguardian.api.API;

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

/**
 * Register default data table cell transformer.
 * 

* Valid method signatures are: *

    *
  • {@code String, Type -> Object}
  • *
  • {@code Object, Type -> Object}
  • *
* * @see io.cucumber.datatable.TableCellByTypeTransformer * @see io.cucumber.datatable.DataTableType */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @API(status = API.Status.STABLE) public @interface DefaultDataTableCellTransformer { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy