Package lumis.util.collections
Interface IStringify<Type>
-
- Type Parameters:
Type
- the type of the object.
- All Known Implementing Classes:
DummyStringfy
public interface IStringify<Type>
Interface that provides a method of converting a given object in a string representation.- Since:
- 9.0.0
- Version:
- $Revision: 19136 $ $Date: 2016-06-02 18:14:45 -0300 (Thu, 02 Jun 2016) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
stringify(Type object)
Converts a given object in a string representation.
-
-
-
Method Detail
-
stringify
String stringify(Type object) throws PortalException
Converts a given object in a string representation.- Parameters:
object
- the object.- Returns:
- the string representation.
- Throws:
PortalException
- Since:
- 9.0.0
-
-