public static CapturedConstraint OfTypeString(this IBeConstraintFactory self) => self.Capture(new OfTypeStringConstraint());
public static CapturedConstraint OfTypeArray(this IBeConstraintFactory self) => self.Capture(new OfTypeArrayConstraint());
public static CapturedConstraint Integer(this IBeConstraintFactory self, bool strict = true) => self.Capture(new OfTypeIntegerConstraint(strict));
public static CapturedConstraint Boolean(this IBeConstraintFactory self, bool strict = true) => self.Capture(new OfTypeBooleanConstraint(strict));
public static CapturedConstraint In <T>(this IBeConstraintFactory self, params T[] args) => self.Capture(new InConstraint <T>(args));
public static CapturedConstraint Object(this IBeConstraintFactory self) => self.Capture(new OfTypeObjectConstraint());
public static CapturedConstraint NullOrEmpty(this IBeConstraintFactory self) => self.Capture(new NullOrEmptyConstraint());
public static CapturedConstraint GreaterOrEqualTo <TComparable>(this IBeConstraintFactory self, TComparable value) where TComparable : IComparable => self.Capture(new GreaterOrEqualToConstraint <TComparable>(value));
public static CapturedConstraint Defined(this IBeConstraintFactory self) => self.Capture(new IsDefinedConstraint());
public static CapturedConstraint EqualTo(this IBeConstraintFactory self, object value) => self.Capture(new EqualToConstraint(value));
public static CapturedConstraint In(this IBeConstraintFactory self, IEnumerable <string> values, StringComparer comparer) => self.Capture(new StringInConstraint(values, comparer));
public static CapturedConstraint EqualTo(this IBeConstraintFactory self, string value, StringComparer comparer) => self.Capture(new StringEqualsConstraint(value, comparer));
public static CapturedConstraint LessThan <TComparable>(this IBeConstraintFactory self, TComparable value) where TComparable : IComparable => self.Capture(new LessThanConstraint <TComparable>(value));
public static CapturedConstraint Match(this IBeConstraintFactory self, Regex expression) => self.Capture(new MatchStringJsonConstraint(expression));
public static CapturedConstraint In <T>(this IBeConstraintFactory self, IEnumerable <T> values) => self.Capture(new InConstraint <T>(values));
public static CapturedConstraint Equal(this IBeConstraintFactory self, string value, StringComparison comparison = StringComparison.Ordinal) => self.Capture(new StringEqualsJsonConstraint(value, comparison));
public static CapturedConstraint Defined(this IBeConstraintFactory self) { return(self.Capture(new IsDefinedJsonConstraint())); }