1 /** 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.util; 5 6 /** 7 * Knows how to turn objects into strings in some fashion. This object must be able to accept <code>null</code> as its 8 * argument. 9 */ 10 public interface Stringifier { 11 12 String toString(Object o); 13 14 }