|
Crystal AI
1.0.0
|
Interface for a collection that contains T:Crystal.IConsiderations and T:Crystal.ICompositeConsiderations. More...
Public Member Functions | |
| bool | Add (IConsideration consideration) |
| Adds the specified consideration. More... | |
| bool | Contains (string considerationId) |
| Determines whether this collection contains a consideration associated with the given identifier. More... | |
| void | Clear () |
| Removes all considerations from this collection. More... | |
| IConsideration | Create (string considerationId) |
Creates a consideration that has the specified identifier, if no such consideration exists within this collection null is returned. More... | |
Interface for a collection that contains T:Crystal.IConsiderations and T:Crystal.ICompositeConsiderations.
| bool Crystal.IConsiderationCollection.Add | ( | IConsideration | consideration | ) |
Adds the specified consideration.
| consideration | The consideration. |
true if the consideration was successfully added to the collection, false otherwise. Implemented in Crystal.ConsiderationCollection.
| void Crystal.IConsiderationCollection.Clear | ( | ) |
Removes all considerations from this collection.
Implemented in Crystal.ConsiderationCollection.
| bool Crystal.IConsiderationCollection.Contains | ( | string | considerationId | ) |
Determines whether this collection contains a consideration associated with the given identifier.
| considerationId | The consideration identifier. |
true if the collection contains a consideration with the given identifier; otherwise false. Implemented in Crystal.ConsiderationCollection.
| IConsideration Crystal.IConsiderationCollection.Create | ( | string | considerationId | ) |
Creates a consideration that has the specified identifier, if no such consideration exists within this collection null is returned.
| considerationId | The consideration identifier. |
Implemented in Crystal.ConsiderationCollection.