Uses of Class
com.sas.collection.HowChanged

Packages that use HowChanged
com.sas.collection Provides several classes which implement data structures called collections. 
 

Uses of HowChanged in com.sas.collection
 

Fields in com.sas.collection declared as HowChanged
static HowChanged HowChanged.ADDED
          One or more items have been added.
protected  HowChanged PropertyBagChangedEvent.howChanged
          How the item changed.
 HowChanged DictionaryChangedInfo.howChanged
          How the items have changed.
 HowChanged CollectionChangedInfo.howChanged
          How the or items items have changed.
static HowChanged HowChanged.OTHER
          Some other change has occurred.
static HowChanged HowChanged.REMOVED
          One or more items have been removed.
static HowChanged HowChanged.REORDERED
          The order has been changed due to a sort or other reordering of the items.
static HowChanged HowChanged.REPLACED
          One or more items have been replaced.
 

Methods in com.sas.collection that return HowChanged
static HowChanged HowChanged.get(int index)
          Return the enum corresponding to an index, or ordinal position.
static HowChanged HowChanged.get(java.lang.String name)
          Return the enum corresponding to an enum name
static HowChanged HowChanged.getEnum(int value)
          Return the enum containing a specified value
static HowChanged HowChanged.getFirst()
          Get the first enum in the sequence.
 HowChanged HowChanged.getNext()
          Return the next HowChanged in the sequence
 HowChanged PropertyBagChangedEvent.howChanged()
          Return the indication of how the property changed.
static HowChanged HowChanged.read(java.io.ObjectInputStream is)
          Deserialization support.
 

Methods in com.sas.collection with parameters of type HowChanged
 void PropertyBag.enableEvents(HowChanged howChanged)
          Undo a call.
 void PropertyBag.firePropertyBagChanged(java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue, HowChanged howChanged)
          Fire a PropertyBagChangedEvent to inform listeners that this property bag's contents have changed.
 

Constructors in com.sas.collection with parameters of type HowChanged
CollectionChangedInfo(java.lang.Object source, HowChanged howChanged)
          Construct a CollectionChangedInfo object which conveys that a one or more items at indeterminate indices have changed
CollectionChangedInfo(java.lang.Object source, HowChanged howChanged, int index)
          Construct a CollectionChangedInfo object which conveys that a single item at the specified index has changed (either added or removed or replaced)
CollectionChangedInfo(java.lang.Object source, HowChanged howChanged, int start, int end)
          Construct a CollectionChangedInfo object which conveys that a range of items has changed (either added, or removed or replaced)
CollectionChangedInfo(java.lang.Object source, java.lang.Object whatChanged, HowChanged howChanged)
          Construct a CollectionChangedInfo object which conveys that a one or more items at indeterminate indices have changed
CollectionChangedInfo(java.lang.Object source, java.lang.Object whatChanged, HowChanged howChanged, int index)
          Construct a CollectionChangedInfo object which conveys that a single item at an indeterminate index has changed (either added or removed or replaced)
CollectionChangedInfo(java.lang.Object source, java.lang.Object whatChanged, HowChanged howChanged, int start, int end)
          Construct a CollectionChangedInfo object which conveys that a range of items has changed (either added, or removed or replaced)
CollectionChangedInfo(java.lang.Object source, java.lang.String propertyName, java.lang.Object whatChanged, HowChanged howChanged, int start, int end)
          Construct a CollectionChangedInfo object which conveys that a range of items has changed (either added, or removed or replaced)
DictionaryChangedInfo(java.lang.Object source, HowChanged howChanged)
          Construct a DictionaryChangedInfo object which conveys that a one or more items have been added/removed/replaced from the Dictionary.
DictionaryChangedInfo(java.lang.Object source, HowChanged howChanged, java.lang.Object item)
          Construct a DictionaryChangedInfo object which conveys that a single item has changed (either added, removed, or replaced)
DictionaryChangedInfo(java.lang.Object source, HowChanged howChanged, java.lang.Object origItem, java.lang.Object newItem)
          Construct a DictionaryChangedInfo object which conveys that a single item has changed (either added, removed, or replaced)
DictionaryChangedInfo(java.lang.Object source, HowChanged howChanged, java.lang.Object key, java.lang.Object origItem, java.lang.Object newItem)
          Construct a DictionaryChangedInfo object which conveys that a single item at a specific key has changed (either added or removed).
OrderedListChangedInfo(java.lang.Object source, com.sas.collection.OrderedListCollection.Node node, HowChanged howChanged, int start)
          Construct a OrderedListChangedInfo object which conveys that a range of items has changed.
OrderedListChangedInfo(java.lang.Object source, com.sas.collection.OrderedListCollection.Node node, HowChanged howChanged, int start, int end)
          Construct a OrderedListChangedInfo object which conveys that a single item has changed.
OrderedListChangedInfo(java.lang.Object source, com.sas.collection.OrderedListCollection.Node node, java.lang.Object item, HowChanged howChanged, int start)
          Construct a OrderedListChangedInfo object which conveys that a single item has changed.
OrderedListChangedInfo(java.lang.Object source, com.sas.collection.OrderedListCollection.Node node, java.lang.Object item, HowChanged howChanged, int start, int end)
          Construct a OrderedListChangedInfo object which conveys that a range of items has changed.
PropertyBagChangedEvent(java.lang.Object source, java.lang.String propertyName, java.lang.Object oldValue, java.lang.Object newValue, HowChanged howChanged)
          Construct a PropertyBagChangedEvent which identifies the source property bag, the name of the changed property, the old and new value, and how the item changed.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.