Packages

final class doc$[Stay, Next] extends OneString$[Stay] with Indexed with Fulltext[Stay, Next]

Source
Schema.scala
Linear Supertypes
Fulltext[Stay, Next], expression.AttrExpressions.FulltextExpr[Stay, Next], Indexed, OneString$[Stay], OneValueAttr$[Stay, String], expression.AttrExpressions.OptionalExpr[Stay, String], ValueAttr$[String], Attr, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. doc$
  2. Fulltext
  3. FulltextExpr
  4. Indexed
  5. OneString$
  6. OneValueAttr$
  7. OptionalExpr
  8. ValueAttr$
  9. Attr
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new doc$()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(some: Option[String]): Stay with Attr

    Apply optional attribute value in save molecule.

    Apply optional attribute value in save molecule.

    val benAge = Some(42)
    val lizAge = None
    
    // Save optional `age` values
    Person.name("Ben").age$(benAge).save
    Person.name("Liz").age$(lizAge).save
    
    Person.name.age$.get === List(
      ("Ben", Some(42)),
      ("Liz", None),
    )
    some

    Optional attribute value to be saved

    returns

    Save-molecule

    Definition Classes
    OptionalExpr
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. def contains(words: expression.AttrExpressions.??): Next with Attr

    Mark as input molecule with String attribute word search.

    Mark as input molecule with String attribute word search.

    Fulltext searches are case-insensitive and only searches for whole words.

    Phrase.id.txt.get === List(
      (1, "The quick fox jumps"),
      (2, "Ten slow monkeys")
    )
    
    // Mark as input molecule awaiting word(s) to search for
    val phraseFinder = m(Phrase.id.txt_.contains(?))
    
    // Then we can apply words to the input molecule at runtime:
    
    phraseFinder("jumps").get === List(1)
    
    // Only whole words matched
    phraseFinder("jump").get === Nil
    
    // Searches are case-insensitive
    phraseFinder("JuMpS").get === List(1)
    
    // Empty spaces ignored
    phraseFinder("   jumps   ").get === List(1)
    
    // Multiple search words have OR semantics
    phraseFinder("jumps", "slow").get === List(1, 2)
    
    // Common words ignored
    phraseFinder("The").get === Nil
    words

    Search words

    returns

    Input molecule awaiting search word(s)

    Definition Classes
    FulltextExpr
    Note

    Fulltext search is constrained by several defaults (which cannot be altered): searches are case insensitive, remove apostrophe or apostrophe and s sequences, and filter out the following common English stop words: "a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"

  8. def contains(word: String, moreWords: String*): Stay with Attr

    Match words of String attribute.

    Match words of String attribute.

    Fulltext searches are case-insensitive and only searches for whole words.

    Phrase.id.txt.get === List(
      (1, "The quick fox jumps"),
      (2, "Ten slow monkeys")
    )
    
    Phrase.id.txt_.contains("jumps").get === List(1)
    
    // Only whole words matched
    Phrase.id.txt_.contains("jump").get === Nil
    
    // Searches are case-insensitive
    Phrase.id.txt_.contains("JuMpS").get === List(1)
    
    // Empty spaces ignored
    Phrase.id.txt_.contains("   jumps   ").get === List(1)
    
    // Multiple search words have OR semantics
    Phrase.id.txt_.contains("jumps", "slow").get === List(1, 2)
    
    // Common words ignored
    Phrase.id.txt_.contains("The").get === Nil
    word

    Search word

    moreWords

    Optional additional search words

    returns

    Filtered molecule

    Definition Classes
    FulltextExpr
    Note

    Fulltext search is constrained by several defaults (which cannot be altered): searches are case insensitive, remove apostrophe or apostrophe and s sequences, and filter out the following common English stop words: "a", "an", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Fulltext[Stay, Next]

Inherited from expression.AttrExpressions.FulltextExpr[Stay, Next]

Inherited from Indexed

Inherited from OneString$[Stay]

Inherited from OneValueAttr$[Stay, String]

Inherited from expression.AttrExpressions.OptionalExpr[Stay, String]

Inherited from ValueAttr$[String]

Inherited from Attr

Inherited from AnyRef

Inherited from Any

Ungrouped