Uses of Interface
com.sas.util.IndexedSetInterface

Packages that use IndexedSetInterface
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 Utility classes for com.sas.servlet. 
com.sas.visuals Additional user interface components not provided in AWT. 
 

Uses of IndexedSetInterface in com.sas.collection
 

Subinterfaces of IndexedSetInterface 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 OrderedCollectionInterface
          An ordered collection is a collection which accesses items via consecutive integer indices.
 interface StringCollectionInterface
          StringCollectionInterface combines StringListInterface and OrderedCollectionInterface.
 

Classes in com.sas.collection that implement IndexedSetInterface
 class AssociationList
          AssociationList is an implementation of AssociationListinterface, a collection which stores and retrieves values by either key or integer index.
 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 StringCollection
          A StringCollection is an ordered collection of java.lang.String values.
 

Methods in com.sas.collection that return IndexedSetInterface
 IndexedSetInterface Permuter.getCollection()
          Return the collection that this Permuter will permute.
 

Methods in com.sas.collection with parameters of type IndexedSetInterface
static void Permuter.move(IndexedSetInterface collection, int[] items, int offset)
          Move the items selected by an array of indices by an offset.
static void Permuter.move(IndexedSetInterface collection, int index, int offset)
          Move an item in a collection by a specified offset.
static void Permuter.permute(IndexedSetInterface collection, int[] permutation)
          A static method useful for a one-time permutation of a collection.
static void Permuter.reverse(IndexedSetInterface collection, int start, int end)
          A static method useful for reversing a (subrange) of items in a collection.
static void Permuter.rotate(IndexedSetInterface collection, int start, int end, int n)
          A static method useful for rotating a (subrange) of items in a collection.
 void Permuter.setCollection(IndexedSetInterface collection)
          Set the collection which this Permuter will permute.
 void Permuter.setCollection(IndexedSetInterface collection, int size)
          Set the collection which this Permuter will permute.
static void Permuter.swap(IndexedSetInterface collection, int i, int j)
          Convenience method to swap two items in an ordered collection.
 

Constructors in com.sas.collection with parameters of type IndexedSetInterface
Permuter(IndexedSetInterface collection)
          Construct a Permuter for a collection.
Permuter(IndexedSetInterface collection, int size)
          Construct a Permuter for a collection.
Permuter(IndexedSetInterface collection, int[] permutation)
          Construct a Permuter for a collection and a permutation.
 

Uses of IndexedSetInterface in com.sas.models
 

Classes in com.sas.models that implement IndexedSetInterface
 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 IndexedSetInterface in com.sas.util
 

Classes in com.sas.util that implement IndexedSetInterface
 class ArrayAccess
          A wrapper for an Object[] array so that it may be sorted with the static sort methods in Sort
 class VectorAccess
          A wrapper for a
Constructors in com.sas.util with parameters of type IndexedSetInterface
Sort(IndexedSetInterface collection, com.sas.util.Comparator comparator)
          Create an array sorting object which will sort the array a or regions of that array, based on a comparator.
Sort(IndexedSetInterface collection, java.util.Comparator comparator)
          Create an array sorting object which will sort the array a or regions of that array, based on a comparator.
Sort(IndexedSetInterface collection, com.sas.util.Comparator comparator, int algorithm)
          Create an array sorting object which will sort the array a or regions of that array, based on a comparator and a specific sort algorithm.
Sort(IndexedSetInterface collection, java.util.Comparator comparator, int algorithm)
          Create an array sorting object which will sort the array a or regions of that array, based on a comparator and a specific sort algorithm.
 

Uses of IndexedSetInterface in com.sas.visuals
 

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

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




Copyright © 2009 SAS Institute Inc. All Rights Reserved.