object GpuRegExpUtils
- Alphabetic
- By Inheritance
- GpuRegExpUtils
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
backrefConversion(rep: String): (Boolean, String)
Convert symbols of back-references if input string contains any.
Convert symbols of back-references if input string contains any. In spark's regex rule, there are two patterns of back-references: \group_index and $group_index This method transforms above two patterns into cuDF pattern ${group_index}, except they are preceded by escape character.
- rep
replacement string
- returns
A pair consists of a boolean indicating whether containing any backref and the converted replacement.
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
countGroups(pattern: String): Int
Returns the number of groups in regexp (includes both capturing and non-capturing groups)
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def getChoicesFromRegex(regex: RegexAST): Option[Seq[String]]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
isEmptyRepetition(pattern: String): Boolean
Recursively check if pattern contains only zero-match repetitions ?, *, {0,}, or {0,n} or any combination of them.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def tagForRegExpEnabled(meta: ExprMeta[_]): Unit
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unescapeReplaceString(s: String): String
We need to remove escape characters in the regexp_replace replacement string before passing to cuDF.
- def validateRegExpComplexity(meta: ExprMeta[_], regex: RegexAST): Unit
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()