org.apache.cactus.internal.util
Class StringUtil
java.lang.Object
org.apache.cactus.internal.util.StringUtil
- public class StringUtil
- extends java.lang.Object
Various utility methods for string manipulation.
- Version:
- $Id: StringUtil.java,v 1.1 2004/05/22 11:34:48 vmassol Exp $
Method Summary |
static java.lang.String |
exceptionToString(java.lang.Throwable theThrowable)
Returns the stack trace of an exception as String. |
static java.lang.String |
exceptionToString(java.lang.Throwable theThrowable,
java.lang.String[] theFilterPatterns)
Returns the stack trace of an exception as String, optionally filtering
out line from the stack trac |
static boolean |
filterLine(java.lang.String theLine,
java.lang.String[] theFilterPatterns)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StringUtil
public StringUtil()
exceptionToString
public static java.lang.String exceptionToString(java.lang.Throwable theThrowable)
- Returns the stack trace of an exception as String.
- Parameters:
theThrowable
- the exception from which to extract the stack trace
as a String
- Returns:
- the exception stack trace as a String
exceptionToString
public static java.lang.String exceptionToString(java.lang.Throwable theThrowable,
java.lang.String[] theFilterPatterns)
- Returns the stack trace of an exception as String, optionally filtering
out line from the stack trac
- Parameters:
theThrowable
- the exception from which to extract the stack trace
as a StringtheFilterPatterns
- Array containing a list of patterns to filter
out from the stack trace
- Returns:
- the exception stack trace as a String
filterLine
public static boolean filterLine(java.lang.String theLine,
java.lang.String[] theFilterPatterns)
- Parameters:
theLine
- The line to checktheFilterPatterns
- The patterns to filter out
- Returns:
- boolean Whether the specified line should be filtered from the
stack trace
Copyright © 2000-2004 Apache Software Foundation. All Rights Reserved.