Uses of Interface
sbrt.shell.text.ListFormat

Packages that use ListFormat
sbrt.shell.text Provides classes and interfaces for defining formats for basic objects. 
 

Uses of ListFormat in sbrt.shell.text
 

Classes in sbrt.shell.text that implement ListFormat
 class AbstractListFormat<E>
          This abstract class is a skeleton implementation of ListFormat.
 class PipeListFormat<E>
          This class is used to define a format for pipe-delimited lists.
 class TabListFormat<E>
          This class is used to define a format for tab-delimited lists.
 class WhitespaceListFormat<E>
          This class is used to define a format for whitespace-delimited lists.
 

Methods in sbrt.shell.text that return ListFormat
abstract  ListFormat<V> AbstractMapFormat.getListFormat()
          Returns the format used for lists of values.
 ListFormat<E> SimpleListFormat.getListFormat()
          Returns the underlying list format.
 

Constructors in sbrt.shell.text with parameters of type ListFormat
SimpleListFormat(ListFormat<E> listFormat)
          Constructs a new simple list format from the provided list format.