Package | Description |
---|---|
org.xins.common |
Generic utility classes.
|
org.xins.common.text |
Text-related utility classes.
|
Modifier and Type | Method and Description |
---|---|
static ProgrammingException |
Utils.logProgrammingError(String detail)
Logs a programming error with an optional cause exception, and returns a
ProgrammingException object for it. |
static ProgrammingException |
Utils.logProgrammingError(String detectingClass,
String detectingMethod,
String subjectClass,
String subjectMethod,
String detail)
Deprecated.
Since XINS 2.0, use
Utils.logProgrammingError(String detail) |
static ProgrammingException |
Utils.logProgrammingError(String detectingClass,
String detectingMethod,
String subjectClass,
String subjectMethod,
String detail,
Throwable cause)
Deprecated.
Since XINS 2.0, use
Utils.logProgrammingError(String detail, Throwable cause) |
static ProgrammingException |
Utils.logProgrammingError(String detail,
Throwable cause)
Logs a programming error with an optional cause exception and an optional
message, and returns a
ProgrammingException object for it. |
static ProgrammingException |
Utils.logProgrammingError(Throwable cause)
Logs a programming error with an optional cause exception, and returns a
ProgrammingException object for it. |
Modifier and Type | Method and Description |
---|---|
static Pattern |
PatternUtils.createPattern(String regexp)
Compiles the given regular expression to a Perl5 pattern object.
|
See http://www.xins.org/.