The {@link com.bayesserver.Node} the collection belongs to.
Gets the number of elements contained in the {@link com.bayesserver.NodeVariableCollection} instance.
Removes all elements from the collection.
Gets the {@link com.bayesserver.Variable} object at the specified index.
The zero-based index of the {@link com.bayesserver.Variable} to find.
A {@link com.bayesserver.Variable}.
Performs a case sensitive lookup.
The name of the {@link com.bayesserver.Variable} to find.
The {@link com.bayesserver.Variable} with the specified name; otherwise null.
Determines whether a {@link com.bayesserver.Variable} is in the collection.
The {@link com.bayesserver.Variable} to locate in the collection. The value can be null.
true if [variable] is found in the collection; otherwise, false.
Determines the index of a specific {@link com.bayesserver.Variable} in the collection.
The variable to find. The value can be null.
The index of the variable in the collection, or -1 if not found.
Inserts an element into the collection at the specified index.
The zero based index at which to add the element.
The item to insert. Cannot be null.
Removes the {@link com.bayesserver.Variable} from the collection.
The {@link com.bayesserver.Variable} to be removed from the collection.
true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the collection.
Removes an element from the collection at the specified index.
The zero based index at which to remove the element.
Sets the {@link com.bayesserver.Variable} object at the specified index.
The zero-based index of the {@link com.bayesserver.Variable} to find.
Represents the collection of variables belonging to a
com.bayesserver.Node .