Uses of Interface
com.sas.collection.CollectionInterface

Packages that use CollectionInterface
com.sas.collection Provides several classes which implement data structures called collections. 
com.sas.models Interfaces and classes for models which may be displayed in various viewers. 
com.sas.util.transforms Interfaces and implementations for objects which transform data from one representation or type to another. 
com.sas.visuals Additional user interface components not provided in AWT. 
 

Uses of CollectionInterface in com.sas.collection
 

Subinterfaces of CollectionInterface in com.sas.collection
 interface AssociationListInterface
          AssociationListInterface combines the OrderedCollection interface and the DictionaryInterface interface, yielding a collection whose items may be accessed by either an index or a key.
 interface DictionaryInterface
          A dictionary interface, for objects which store and retrieve values by name
 interface OrderedCollectionInterface
          An ordered collection is a collection which accesses items via consecutive integer indices.
 interface SortedCollectionInterface
          SortedCollectionInterface defines an interface for an ordered collection which preserves a sort order when inserting items.
 interface StringCollectionInterface
          StringCollectionInterface combines StringListInterface and OrderedCollectionInterface.
 

Classes in com.sas.collection that implement CollectionInterface
 class AssociationList
          AssociationList is an implementation of AssociationListinterface, a collection which stores and retrieves values by either key or integer index.
 class Collection
          A implementation of CollectionInterface, for objects which store and retrieve values.
 class Dictionary
          A Dictionary stores and retrieves values by a key.
 class OrderedCollection
          An ordered collection is a collection which accesses items via consecutive integer indices.
 class OrderedListCollection
          An OrderedListCollection is a linked list implementation of OrderedCollectionInterface.
 class Set
          A Set is a Collection which does not allow duplicates elements.
 class SortedCollection
          SortedCollection is a collection which inserts items in a sort order defined by a Comparator.
 class StringCollection
          A StringCollection is an ordered collection of java.lang.String values.
 

Uses of CollectionInterface in com.sas.models
 

Classes in com.sas.models that implement CollectionInterface
 class ColorList
          A base class that creates an empty ordered collection.
 class ColorNameList
          An associationlist of java.awt.SystemColor and com.sas.awt.Color objects as keys and name as values.
 class DefaultColorList
          An Ordered Collection of java.awt.SystemColors and com.sas.awt.Color objects.
 class DefaultFontFamilyList
          This class provides a list of font family names that are available on the system.
 class DefaultFontList
          This class provides a list of font objects that are available on the system.
 class FontList
          This class provides a list of font objects that are available on the system.
 class KeyCollection
          A collection containing strings for all of the java.awt.event.KeyEvent key codes.
 class RGBList
          A class that has a list of color names associated with its RGB values(integer).
 

Uses of CollectionInterface in com.sas.util.transforms
 

Methods in com.sas.util.transforms that return CollectionInterface
protected  CollectionInterface StringToCollectionInterfaceTransform.newCollection()
          Factory method to create a CollectionInterface instance when transforming an object.
 CollectionInterface StringToCollectionInterfaceTransform.transform(CollectionInterface collection, java.lang.String text)
          Transform a text string into an collection
 

Methods in com.sas.util.transforms with parameters of type CollectionInterface
 CollectionInterface StringToCollectionInterfaceTransform.transform(CollectionInterface collection, java.lang.String text)
          Transform a text string into an collection
 

Constructors in com.sas.util.transforms with parameters of type CollectionInterface
StringToCollectionInterfaceTransform(char delimiter, CollectionInterface collection)
          Construct a transform which uses a specific delimiter.
 

Uses of CollectionInterface in com.sas.visuals
 

Subinterfaces of CollectionInterface in com.sas.visuals
 interface SelectionGroupInterface
          SelectionGroupInterface is an interface used to group and manipulate SelectableInterface objects.
 

Classes in com.sas.visuals that implement CollectionInterface
 class SelectionGroup
          SelectionGroup is a class used to group and manipulate SelectableInterface objects.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.