|
Samond Classes Library 1.1.6-RELEASE build 132
|
Unidirectional objects list class. More...
#import <SCUnidirectionalList.h>
Static Public Member Functions | |
Creating List | |
| (SCUnidirectionalList *) | + listWithDataDictionary: |
| (SCUnidirectionalList *) | + listWithDataDictionaryFromFile: |
| (SCUnidirectionalList *) | + listWithCoder: |
| (SCUnidirectionalList *) | + listWithContentsOfSerializedFile: |
| (SCUnidirectionalList *) | + listWithStream: |
| (SCUnidirectionalList *) | + listWithFileStream: |
| (SCUnidirectionalList *) | + list |
| (SCUnidirectionalList *) | + listWithListName:capacity: |
| (SCUnidirectionalList *) | + listWithListName: |
| (SCUnidirectionalList *) | + listWithCapacity: |
| (SCUnidirectionalList *) | + listWithDelegate: |
| (SCUnidirectionalList *) | + listWithDelegate:collection: |
| (SCUnidirectionalList *) | + listWithCollection: |
| (SCUnidirectionalList *) | + listWithDelegate:object: |
| (SCUnidirectionalList *) | + listWithObject: |
| (SCUnidirectionalList *) | + listWithDelegate:objects: |
| (SCUnidirectionalList *) | + listWithObjects: |
| (SCUnidirectionalList *) | + listWithList: |
Unidirectional objects list class.
Class represents the unidirectional objects list class - special collection of objects, which stored as a unidirectional (from previous to next item only) list.
Class was introduced in version 1.1.3.
| + (SCUnidirectionalList *) list |
Returns the list created by using default settings.
| + (SCUnidirectionalList *) listWithCapacity: | (SCULong) | capacity |
Returns the list created by using the specified capacity.
| capacity | - list capacity |
| + (SCUnidirectionalList *) listWithCoder: | (NSCoder *) | coder |
Returns a list created by using the specified coder.
| coder | - source coder |
| + (SCUnidirectionalList *) listWithCollection: | (id) | collection |
Returns the list created by using the specified existing collection.
| collection | - existing collection |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithContentsOfSerializedFile: | (NSString *) | path |
Returns a list created by using the contents of serialized file with the specified path.
| path | - source serialized file path |
| + (SCUnidirectionalList *) listWithDataDictionary: | (NSDictionary *) | dictionary |
Returns a list created by using the specified dictionary.
| dictionary | - source dictionary |
| + (SCUnidirectionalList *) listWithDataDictionaryFromFile: | (NSString *) | path |
Returns a list created by using the dictionary from the specified file.
| path | - source dictionary file path |
| + (SCUnidirectionalList *) listWithDelegate: | (id<SCCollectionDelegate>) | delegate |
Returns the list created by using the specified delegate object.
| delegate | - delegate object |
| + (SCUnidirectionalList *) listWithDelegate: | (id<SCCollectionDelegate>) | delegate | |
| collection: | (id) | collection | |
Returns the list created by using the specified delegate object and existing collection.
| delegate | - delegate object |
| collection | - existing collection |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithDelegate: | (id<SCCollectionDelegate>) | delegate | |
| object: | (id) | object | |
Returns the list created by using the specified delegate object and existing object.
| delegate | - delegate object |
| object | - existing object |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithDelegate: | (id<SCCollectionDelegate>) | delegate | |
| objects: | (id) | object | |
| , | ... | ||
Returns the list created by using the specified delegate object and list of existing objects.
| delegate | - delegate object |
| object | - first existing object |
| ... | - other existing objects |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithFileStream: | (NSString *) | path |
Returns a list created from the stream file with the specified path.
| path | - stream file path |
| SCStreamException | - stream operation error detected |
| + (SCUnidirectionalList *) listWithList: | (SCList *) | list |
Returns the list created by using the existing list.
| list | - source list |
| SCCollectionError | - list error detected |
| + (SCUnidirectionalList *) listWithListName: | (NSString *) | name |
Returns the list created by using the specified name.
| name | - list name |
| + (SCUnidirectionalList *) listWithListName: | (NSString *) | name | |
| capacity: | (SCULong) | capacity | |
Returns the list created by using the specified name and capacity.
| name | - list name |
| capacity | - list capacity |
| + (SCUnidirectionalList *) listWithObject: | (id) | object |
Returns the list created by using the specified existing object.
| object | - existing object |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithObjects: | (id) | object | |
| , | ... | ||
Returns the list created by using the specified list of existing objects.
| object | - first existing object |
| ... | - other existing objects |
| SCCollectionException | - list error detected |
| + (SCUnidirectionalList *) listWithStream: | (SCStream *) | stream |
Returns a list created from the specified stream.
| stream | - stream for reading list |
| SCStreamException | - stream operation error detected |
| SCSystemException | - system error detected |
1.7.3