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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tfetch(de.fraunhofer.iosb.ilt.frostserver.model.core.Entity<?> source)Fetch the pre-registered property of the given source entity.
-
-
-
Method Detail
-
fetch
T fetch(de.fraunhofer.iosb.ilt.frostserver.model.core.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.
-
-