Interface CsvElementFetcher<T>

Type Parameters:
T - The type of the returned Object.

public interface CsvElementFetcher<T>
Interface for a class that returns a pre-registered property of an Entity.
Author:
scf
  • Method Summary

    Modifier and Type
    Method
    Description
    fetch(Entity source)
    Fetch the pre-registered property of the given source entity.
  • Method Details

    • fetch

      T fetch(Entity source)
      Fetch the pre-registered property of the given source entity.
      Parameters:
      source - The Entity to fetch the property for.
      Returns:
      The value of the property, for the given Entity.