0.11.4
ca.uqac.lif.cep.util.Strings Class Reference

Detailed Description

A container object for string functions.

Author
Sylvain Hallé
Since
0.7

Definition at line 36 of file Strings.java.

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  Matches
 Checks if a string matches a regular expression. More...
class  StartsWith
 Checks if a string starts by another. More...
class  SplitString
 Transforms a comma-separated line of text into an array. More...
class  ToString
 Transforms any object into a string using the "toString" method. More...
class  FindRegex
 Finds all substrings that match capturing group 1 of a regular expression. More...
class  FindRegexOnce
 Finds the first substring that matches capturing group 1 of a regular expression. More...
class  Substring
 Extracts a sub-string out of another string. More...
class  ReplaceAll
 Replaces all matches of a regular expression by another regular expression. 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

Protected Member Functions

 Strings ()

Constructor & Destructor Documentation

◆ Strings()

ca.uqac.lif.cep.util.Strings.Strings ( )
protected

Definition at line 38 of file Strings.java.

Member Data Documentation

◆ concat

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

Definition at line 43 of file Strings.java.

◆ contains

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

Definition at line 45 of file Strings.java.

◆ endsWith

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

Definition at line 47 of file Strings.java.

◆ matches

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

Definition at line 49 of file Strings.java.

◆ startsWith

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

Definition at line 51 of file Strings.java.

◆ toString

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

Definition at line 53 of file Strings.java.


The documentation for this class was generated from the following file:
  • /home/sylvain/Workspaces/beepbeep/core/src/ca/uqac/lif/cep/util/Strings.java