using System;
namespace FileHelpers
{
/// The condition used to include or exclude each record.
public enum RecordCondition
{
/// No Condition, Include it always.
None = 0,
/// Include the record if it contains the selector string.
IncludeIfContains,
/// Include the record if it begins with selector string.
IncludeIfBegins,
/// Include the record if it ends with selector string.
IncludeIfEnds,
/// Include the record if it begins and ends with selector string.
IncludeIfEnclosed,
#if ! MINI
/// Include the record if it matchs the regular expression passed as selector.
IncludeIfMatchRegex,
#endif
/// Exclude the record if it contains the selector string.
ExcludeIfContains,
/// Exclude the record if it begins with selector string.
ExcludeIfBegins,
/// Exclude the record if it ends with selector string.
ExcludeIfEnds,
/// Exclude the record if it begins and ends with selector string.
ExcludeIfEnclosed
#if ! MINI
,
/// Exclude the record if it matchs the regular expression passed as selector.
ExcludeIfMatchRegex
#endif
}
}