Interface StringUtil.ToString<O>

Type Parameters:
O - type of object manipulated
All Known Implementing Classes:
StringUtil.ToCSV
Enclosing class:
StringUtil

public static interface StringUtil.ToString<O>
Contract to use in StringUtil.join(Iterable, ToString, String, boolean) method. This will provide a toString method to convert an object in a string.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString​(O o)
    Convert an object o in a string.
  • Method Details

    • toString

      java.lang.String toString​(O o)
      Convert an object o in a string.
      Parameters:
      o - to convert
      Returns:
      the string for this object o