Uses of Interface
com.sas.collection.StaticCollectionInterface

Packages that use StaticCollectionInterface
com.sas.collection Provides several classes which implement data structures called collections. 
com.sas.io Extensions to java.io for file and directory manipulation. 
com.sas.models Interfaces and classes for models which may be displayed in various viewers. 
com.sas.table A set of interfaces for accessing two-dimensional data, and a set of classes for viewing and manipulating that data in tabular form. 
com.sas.visuals Additional user interface components not provided in AWT. 
 

Uses of StaticCollectionInterface in com.sas.collection
 

Subinterfaces of StaticCollectionInterface 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 CollectionInterface
          A collection interface, for objects which store and retrieve values.
 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 StaticDictionaryInterface
          A static dictionary interface, for objects which retrieve values by an Object key.
 interface StaticOrderedCollectionInterface
          A static ordered collection interface defines read access to items in an ordered collection.
 interface StringCollectionInterface
          StringCollectionInterface combines StringListInterface and OrderedCollectionInterface.
 

Classes in com.sas.collection that implement StaticCollectionInterface
 class AssociationList
          AssociationList is an implementation of AssociationListinterface, a collection which stores and retrieves values by either key or integer index.
 class BaseCollection
          Abstract base class for collections.
 class Collection
          A implementation of CollectionInterface, for objects which store and retrieve values.
 class CollectionMirror
          A CollectionMirror is an abstract base class for other read-only collections which "reflect" other collections.
 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 StaticCollection
          A StaticCollection is a class which hides the update methods of a collection object.
 class StaticDictionary
          A StaticDictionary is a class which hides the update methods of a dictionary object.
 class StaticOrderedCollection
          A StaticOrderedCollection is a class which hides the update methods of a OrderedCollection object.
 class StaticStringList
          A StaticStringList is a class which hides the update methods of a StringList object.
 class StringCollection
          A StringCollection is an ordered collection of java.lang.String values.
 

Methods in com.sas.collection with parameters of type StaticCollectionInterface
static java.lang.Object Collection.toArray(StaticCollectionInterface collection)
          Return a new array of objects containing the contents of this collection.
 

Constructors in com.sas.collection with parameters of type StaticCollectionInterface
SortedCollection(StaticCollectionInterface items, com.sas.util.Comparator comparator, boolean allowDuplicates)
          Create a SortedCollection from the contents of an array.
StaticCollection(StaticCollectionInterface collection)
          Create a StaticCollection which provides read-only access to a Collection.
 

Uses of StaticCollectionInterface in com.sas.io
 

Classes in com.sas.io that implement StaticCollectionInterface
 class File
          A class representing a File on the host file system.
 class FileList
          A class that holds a list of File and Directory names that are available in a Directory on a specified FileSystem.
 class FileSystemList
          A class that holds a list of RootDirectories (drives) that are available on the system Creating a FileSystemList Component FileSystemList fsl = new FileSystemList();
 class PrinterList
          A class that holds a list of Printers that are available on the system Creating a PrinterList Component PrinterList pl = new PrinterList(); Usage A PrinterList object can be used as a model for ListBox, ComboBox, or Tree.
 

Uses of StaticCollectionInterface in com.sas.models
 

Classes in com.sas.models that implement StaticCollectionInterface
 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 IMDBTable
           
 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 StaticCollectionInterface in com.sas.table
 

Classes in com.sas.table that implement StaticCollectionInterface
 class CellSelection
          Represents a contiguous range of cells in a TableView.
 class CellVectorSelection
          Defines an abstract base class for representing TableView column and row selections.
 class ColumnSelection
          Represents a contiguous range of columns in a TableView.
 class RowSelection
          Represents a contiguous range of rows in a TableView.
 class Selection
          Defines an abstract base class for representing TableView selections.
 

Uses of StaticCollectionInterface in com.sas.visuals
 

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

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




Copyright © 2009 SAS Institute Inc. All Rights Reserved.