Interface StringExtractor<T>
-
public interface StringExtractor<T>Extracts a
Stringvalue from the input object.Typically the extracted
Stringwill be used as a comparable key in sorting a list of objects.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringtoString(T object)Extracts theStringfrom theObject.
-
-
-
Method Detail
-
toString
java.lang.String toString(T object)
Extracts theStringfrom theObject.- Parameters:
object-Objectto extract theStringfrom.- Returns:
- Extracted
String.
-
-