using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BismNormalizer.TabularCompare.TabularMetadata
{
///
/// Represents a collection of Expression objects.
///
public class ExpressionCollection : List
{
///
/// Find an object in the collection by name.
///
///
/// Expression object if found. Null if not found.
public Expression FindByName(string name)
{
foreach (Expression expression in this)
{
if (expression.Name == name)
{
return expression;
}
}
return null;
}
///
/// A Boolean specifying whether the collection contains object by name.
///
///
/// True if the object is found, or False if it's not found.
public bool ContainsName(string name)
{
foreach (Expression expression in this)
{
if (expression.Name == name)
{
return true;
}
}
return false;
}
///
/// Find an object in the collection by Id.
///
///
/// Expression object if found. Null if not found.
public Expression FindById(string id)
{
foreach (Expression expression in this)
{
if (expression.InternalName == id)
{
return expression;
}
}
return null;
}
///
/// Removes an object from the collection by its internal name.
///
///
/// True if the object was removed, or False if was not found.
public bool Remove(string internalName)
{
foreach (Expression expression in this)
{
if (expression.InternalName == internalName)
{
this.Remove(expression);
return true;
}
}
return false;
}
}
}