0.10.8-alpha
ca.uqac.lif.cep.util.Strings Class Reference

A container object for string functions. More...

Classes

class  BuildString
 Concatenates input strings into an output string. More...
 
class  Concat
 Concatenates two strings. More...
 
class  Contains
 Function that checks if a string contains another. More...
 
class  EndsWith
 Function that checks if a string ends by another. More...
 
class  FindRegex
 Finds all substrings that match capturing group 1 of a regular expression. More...
 
class  Matches
 Checks if a string matches a regular expression. More...
 
class  SplitString
 Transforms a comma-separated line of text into an array. More...
 
class  StartsWith
 Checks if a string starts by another. More...
 
class  ToString
 Transforms any object into a string using the "toString" method. More...
 

Static Public Attributes

static final Concat concat = new Concat()
 
static final Contains contains = new Contains()
 
static final EndsWith endsWith = new EndsWith()
 
static final Matches matches = new Matches()
 
static final StartsWith startsWith = new StartsWith()
 
static final ToString toString = ToString.instance
 

Detailed Description

A container object for string functions.

Author
Sylvain Hallé
Since
0.7

Definition at line 35 of file Strings.java.

Member Data Documentation

◆ concat

final Concat ca.uqac.lif.cep.util.Strings.concat = new Concat()
static

Definition at line 42 of file Strings.java.

◆ contains

final Contains ca.uqac.lif.cep.util.Strings.contains = new Contains()
static

Definition at line 44 of file Strings.java.

◆ endsWith

final EndsWith ca.uqac.lif.cep.util.Strings.endsWith = new EndsWith()
static

Definition at line 46 of file Strings.java.

◆ matches

final Matches ca.uqac.lif.cep.util.Strings.matches = new Matches()
static

Definition at line 48 of file Strings.java.

◆ startsWith

final StartsWith ca.uqac.lif.cep.util.Strings.startsWith = new StartsWith()
static

Definition at line 50 of file Strings.java.

◆ toString

final ToString ca.uqac.lif.cep.util.Strings.toString = ToString.instance
static

Definition at line 52 of file Strings.java.


The documentation for this class was generated from the following file: