Click or drag to resize
Term Class
Represents an abstract Lucene search term.
Inheritance Hierarchy

Namespace:  RiakClient.Models.Search
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public abstract class Term

The Term type exposes the following members.

Constructors
  NameDescription
Protected methodTerm
Initializes a new instance of the Term class
Top
Properties
  NameDescription
Protected propertySearch
Returns a new RiakFluentSearch object based on this Term.
Top
Methods
  NameDescription
Public methodAnd(String)
Combines this Term, using a logical AND, with a new one searching this Term's field for the provided value string.
Public methodAnd(Token)
Combines this Term, using a logical AND, with a new one searching this Term's field for the provided value Token.
Public methodAnd(String, Token)
Combines this Term, using a logical AND, with a new one searching the field field for the provided value Token.
Public methodAnd(String, FuncTerm, Term)
Combines a Term searching this field for the value string, using a logical AND, with another Term generated by the groupSetup Func.
Public methodAnd(String, String)
Combines this Term, using a logical AND, with a new one searching the field field for the provided value string.
Public methodAnd(Token, FuncTerm, Term)
Combines a Term searching this field for the value Token, using a logical AND, with another Term generated by the groupSetup Func.
Public methodAnd(String, Token, FuncTerm, Term)
Combines a Term searching the field field for the value Token, using a logical AND, with another Term generated by the groupSetup Func.
Public methodAnd(String, String, FuncTerm, Term)
Combines a Term searching the field field for the value string, using a logical AND, with another Term generated by the groupSetup Func.
Public methodAndBetween(String, Token, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching the current field for values between from and to.
Public methodAndBetween(String, String, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching the current field for values between from and to.
Public methodAndBetween(Token, Token, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching the current field for values between from and to.
Public methodAndBetween(Token, String, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching the current field for values between from and to.
Public methodAndBetween(String, Token, Token, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching field for values between from and to.
Public methodAndBetween(String, Token, String, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching field for values between from and to.
Public methodAndBetween(String, String, Token, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching field for values between from and to.
Public methodAndBetween(String, String, String, Boolean)
Combine this Term, using a logical AND, with a new Range Term searching field for values between from and to.
Public methodAndProximity(Double, String)
Combine this Term, using a logical AND, with a new one that searches the current field for a set of words that are within a certain distance (proximity) of each other.
Public methodAndProximity(String, Double, String)
Combine this Term, using a logical AND, with a new one that searches the field field for a set of words that are within a certain distance (proximity) of each other.
Public methodBoost
Boosts the relevance level of the this Term when matches are found.
Public methodBuild
Builds the Term into a new RiakFluentSearch object.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNot
Inverts any matches so that the documents found by this Term are excluded from the result set.
Public methodOr(String)
Combines this Term, using a logical OR, with a new one searching this Term's field for the provided value string.
Public methodOr(Token)
Combines this Term, using a logical OR, with a new one searching this Term's field for the provided value Token.
Public methodOr(String, Token)
Combines this Term, using a logical OR, with a new one searching the field field for the value Token.
Public methodOr(String, FuncTerm, Term)
Combines a Term searching this field for the value string, using a logical OR, with another Term generated by the groupSetup Func.
Public methodOr(String, String)
Combines this Term, using a logical OR, with a new one searching the field field for value string.
Public methodOr(Token, FuncTerm, Term)
Combines a Term searching this field for the value Token, using a logical OR, with another Term generated by the groupSetup Func.
Public methodOr(String, Token, FuncTerm, Term)
Combines a Term searching the field field for the value Token, using a logical OR, with another Term generated by the groupSetup Func.
Public methodOr(String, String, FuncTerm, Term)
Combines a Term searching the field field for the value string, using a logical OR, with another Term generated by the groupSetup Func.
Public methodOrBetween(String, Token, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching the current field for values between from and to.
Public methodOrBetween(String, String, Boolean)
Combines this Term, using a logical OR, with a new Range Term searching the current field for values between from and to.
Public methodOrBetween(Token, Token, Boolean)
Combine this Term, using a logical Or, with a new Range Term searching the current field for values between from and to.
Public methodOrBetween(Token, String, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching the current field for values between from and to.
Public methodOrBetween(String, Token, Token, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching field for values between from and to.
Public methodOrBetween(String, Token, String, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching field for values between from and to.
Public methodOrBetween(String, String, Token, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching field for values between from and to.
Public methodOrBetween(String, String, String, Boolean)
Combine this Term, using a logical OR, with a new Range Term searching field for values between from and to.
Public methodOrProximity(Double, String)
Combine this Term, using a logical OR, with a new one that searches the current field for a set of words that are within a certain distance (proximity) of each other.
Public methodOrProximity(String, Double, String)
Combine this Term, using a logical OR, with a new one that searches the field field for a set of words that are within a certain distance (proximity) of each other.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also