Search Results for

    Show / Hide Table of Contents

    Class TextP

    A TextP is a predicate of the form Func<string, bool>. That is, given some string, return true or false.

    Inheritance
    System.Object
    P
    TextP
    Implements
    IPredicate
    Inherited Members
    P.OperatorName
    P.Value
    P.Other
    P.And(P)
    P.Or(P)
    P.Between(Object[])
    P.Eq(Object[])
    P.Gt(Object[])
    P.Gte(Object[])
    P.Inside(Object[])
    P.Lt(Object[])
    P.Lte(Object[])
    P.Neq(Object[])
    P.Not(Object[])
    P.Outside(Object[])
    P.Test(Object[])
    P.Within(Object[])
    P.Without(Object[])
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Gremlin.Net.Process.Traversal
    Assembly: cs.temp.dll.dll
    Syntax
    public class TextP : P, IPredicate

    Constructors

    TextP(String, String, P)

    Initializes a new instance of the TextP class.

    Declaration
    public TextP(string operatorName, string value, P other = null)
    Parameters
    Type Name Description
    System.String operatorName

    The name of the predicate.

    System.String value

    The value of the predicate.

    P other

    An optional other predicate that is used as an argument for this predicate.

    Methods

    Containing(String)

    Declaration
    public static TextP Containing(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    EndingWith(String)

    Declaration
    public static TextP EndingWith(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    NotContaining(String)

    Declaration
    public static TextP NotContaining(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    NotEndingWith(String)

    Declaration
    public static TextP NotEndingWith(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    NotRegex(String)

    Declaration
    public static TextP NotRegex(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    NotStartingWith(String)

    Declaration
    public static TextP NotStartingWith(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    Regex(String)

    Declaration
    public static TextP Regex(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    StartingWith(String)

    Declaration
    public static TextP StartingWith(string value)
    Parameters
    Type Name Description
    System.String value
    Returns
    Type Description
    TextP

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    Overrides
    P.ToString()

    Implements

    IPredicate
    In This Article
    Back to top Copyright © 2018 The Apache Software Foundation