Package org.apache.jackrabbit.vault.util
Class Text
- java.lang.Object
-
- org.apache.jackrabbit.vault.util.Text
-
@Deprecated public class Text extends Object
Deprecated.UseText
insteadThis Class provides some text related utilities
-
-
Field Summary
Fields Modifier and Type Field Description static char[]
hexTable
Deprecated.used for the md5static BitSet
URISave
Deprecated.The list of characters that are not encoded by theescape()
andunescape()
METHODS.static BitSet
URISaveEx
Deprecated.Same asURISave
but also contains the '/'
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static String
digest(String algorithm, byte[] data)
Deprecated.Digest the plain string using the given algorithm.static String
digest(String algorithm, String data, String enc)
Deprecated.Digest the plain string using the given algorithm.static String
encodeIllegalXMLCharacters(String text)
Deprecated.Replaces illegal XML characters in the given string by their corresponding predefined entity references.static String
escape(String string)
Deprecated.Does a URL encoding of thestring
.static String
escape(String string, char escape)
Deprecated.Does an URL encoding of thestring
using theescape
character.static String
escape(String string, char escape, boolean isPath)
Deprecated.Does an URL encoding of thestring
using theescape
character.static String
escapeIllegalJcrChars(String name)
Deprecated.Escapes all illegal JCR name characters of a string.static String
escapeIllegalXpathSearchChars(String s)
Deprecated.Escapes illegal XPath search characters at the end of a string.static String
escapePath(String path)
Deprecated.Does a URL encoding of thepath
.static String[]
explode(String str, int ch)
Deprecated.returns an array of strings decomposed of the original string, split at every occurrence of 'ch'.static String[]
explode(String str, int ch, boolean respectEmpty)
Deprecated.returns an array of strings decomposed of the original string, split at every occurance of 'ch'.static String
getAbsoluteParent(String path, int level)
Deprecated.Returns the nth absolute parent of the path, where n=level.static String
getLocalName(String qname)
Deprecated.Returns the local name of the givenqname
.static String
getName(String path)
Deprecated.Returns the name part of the path.static String
getName(String path, boolean ignoreTrailingSlash)
Deprecated.Same asgetName(String)
but adding the possibility to pass paths that end with a trailing '/'static String
getName(String path, char delim)
Deprecated.Returns the name part of the path, delimited by the givendelim
.static String
getNamespacePrefix(String qname)
Deprecated.Returns the namespace prefix of the givenqname
.static String
getRelativeParent(String path, int level)
Deprecated.Returns the nth relative parent of the path, where n=level.static String
getRelativeParent(String path, int level, boolean ignoreTrailingSlash)
Deprecated.Same asgetRelativeParent(String, int)
but adding the possibility to pass paths that end with a trailing '/'static String
implode(String[] arr, String delim)
Deprecated.Concatenates all strings in the string array using the specified delimiter.static boolean
isDescendant(String path, String descendant)
Deprecated.Determines if thedescendant
path is hierarchical a descendant ofpath
.static boolean
isDescendantOrEqual(String path, String descendant)
Deprecated.Determines if thedescendant
path is hierarchical a descendant ofpath
or equal to it.static boolean
isSibling(String p1, String p2)
Deprecated.Determines, if two paths denote hierarchical siblins.static String
md5(String data)
Deprecated.Calculate an MD5 hash of the string given using 'utf-8' encoding.static String
md5(String data, String enc)
Deprecated.Calculate an MD5 hash of the string given.static String
replace(String text, String oldString, String newString)
Deprecated.Replaces all occurrences ofoldString
intext
withnewString
.static String
replaceVariables(Properties variables, String value, boolean ignoreMissing)
Deprecated.Performs variable replacement on the given string value.static String
unescape(String string)
Deprecated.Does a URL decoding of thestring
.static String
unescape(String string, char escape)
Deprecated.Does a URL decoding of thestring
using theescape
character.static String
unescapeIllegalJcrChars(String name)
Deprecated.Unescapes previously escaped jcr chars.
-
-
-
Field Detail
-
hexTable
public static final char[] hexTable
Deprecated.used for the md5
-
URISave
public static BitSet URISave
Deprecated.The list of characters that are not encoded by theescape()
andunescape()
METHODS. They contains the characters as defined 'unreserved' in section 2.3 of the RFC 2396 'URI generic syntax':unreserved = alphanum | mark mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
-
-
Method Detail
-
md5
public static String md5(String data, String enc) throws UnsupportedEncodingException
Deprecated.Calculate an MD5 hash of the string given.- Parameters:
data
- the data to encodeenc
- the character encoding to use- Returns:
- a hex encoded string of the md5 digested input
- Throws:
UnsupportedEncodingException
- if the encoding is not supported
-
md5
public static String md5(String data)
Deprecated.Calculate an MD5 hash of the string given using 'utf-8' encoding.- Parameters:
data
- the data to encode- Returns:
- a hex encoded string of the md5 digested input
-
digest
public static String digest(String algorithm, String data, String enc) throws NoSuchAlgorithmException, UnsupportedEncodingException
Deprecated.Digest the plain string using the given algorithm.- Parameters:
algorithm
- The alogrithm for the digest. This algorithm must be supported by the MessageDigest class.data
- The plain text String to be digested.enc
- The character encoding to use- Returns:
- The digested plain text String represented as Hex digits.
- Throws:
NoSuchAlgorithmException
- if the desired algorithm is not supported by the MessageDigest class.UnsupportedEncodingException
- if the encoding is not supported
-
digest
public static String digest(String algorithm, byte[] data) throws NoSuchAlgorithmException
Deprecated.Digest the plain string using the given algorithm.- Parameters:
algorithm
- The algorithm for the digest. This algorithm must be supported by the MessageDigest class.data
- the data to digest with the given algorithm- Returns:
- The digested plain text String represented as Hex digits.
- Throws:
NoSuchAlgorithmException
- if the desired algorithm is not supported by the MessageDigest class.
-
explode
public static String[] explode(String str, int ch)
Deprecated.returns an array of strings decomposed of the original string, split at every occurrence of 'ch'. if 2 'ch' follow each other with no intermediate characters, empty "" entries are avoided.- Parameters:
str
- the string to decomposech
- the character to use a split pattern- Returns:
- an array of strings
-
explode
public static String[] explode(String str, int ch, boolean respectEmpty)
Deprecated.returns an array of strings decomposed of the original string, split at every occurance of 'ch'.- Parameters:
str
- the string to decomposech
- the character to use a split patternrespectEmpty
- iftrue
, empty elements are generated- Returns:
- an array of strings
-
implode
public static String implode(String[] arr, String delim)
Deprecated.Concatenates all strings in the string array using the specified delimiter.- Parameters:
arr
- The String arraydelim
- The delimiter- Returns:
- the concatenated string
-
replace
public static String replace(String text, String oldString, String newString)
Deprecated.Replaces all occurrences ofoldString
intext
withnewString
.- Parameters:
text
- The test to replaceoldString
- old substring to be replaced withnewString
newString
- new substring to replace occurrences ofoldString
- Returns:
- a string
-
encodeIllegalXMLCharacters
public static String encodeIllegalXMLCharacters(String text)
Deprecated.Replaces illegal XML characters in the given string by their corresponding predefined entity references.- Parameters:
text
- text to be escaped- Returns:
- a string
-
escape
public static String escape(String string, char escape)
Deprecated.Does an URL encoding of thestring
using theescape
character. The characters that don't need encoding are those defined 'unreserved' in section 2.3 of the 'URI generic syntax' RFC 2396, but without the escape character.- Parameters:
string
- the string to encode.escape
- the escape character.- Returns:
- the escaped string
- Throws:
NullPointerException
- ifstring
isnull
.
-
escape
public static String escape(String string, char escape, boolean isPath)
Deprecated.Does an URL encoding of thestring
using theescape
character. The characters that don't need encoding are those defined 'unreserved' in section 2.3 of the 'URI generic syntax' RFC 2396, but without the escape character. IfisPath
istrue
, additionally the slash '/' is ignored, too.- Parameters:
string
- the string to encode.escape
- the escape character.isPath
- iftrue
, the string is treated as path- Returns:
- the escaped string
- Throws:
NullPointerException
- ifstring
isnull
.
-
escape
public static String escape(String string)
Deprecated.Does a URL encoding of thestring
. The characters that don't need encoding are those defined 'unreserved' in section 2.3 of the 'URI generic syntax' RFC 2396.- Parameters:
string
- the string to encode- Returns:
- the escaped string
- Throws:
NullPointerException
- ifstring
isnull
.
-
escapePath
public static String escapePath(String path)
Deprecated.Does a URL encoding of thepath
. The characters that don't need encoding are those defined 'unreserved' in section 2.3 of the 'URI generic syntax' RFC 2396. In contrast to theescape(String)
method, not the entire path string is escaped, but every individual part (i.e. the slashes are not escaped).- Parameters:
path
- the path to encode- Returns:
- the escaped path
- Throws:
NullPointerException
- ifpath
isnull
.
-
unescape
public static String unescape(String string, char escape)
Deprecated.Does a URL decoding of thestring
using theescape
character. Please note that in opposite to theURLDecoder
it does not transform the + into spaces.- Parameters:
string
- the string to decodeescape
- the escape character- Returns:
- the decoded string
- Throws:
NullPointerException
- ifstring
isnull
.IllegalArgumentException
- if the 2 characters following the escape character do not represent a hex-number or if not enough characters follow an escape character
-
unescape
public static String unescape(String string)
Deprecated.Does a URL decoding of thestring
. Please note that in opposite to theURLDecoder
it does not transform the + into spaces.- Parameters:
string
- the string to decode- Returns:
- the decoded string
- Throws:
NullPointerException
- ifstring
isnull
.ArrayIndexOutOfBoundsException
- if not enough character follow an escape characterIllegalArgumentException
- if the 2 characters following the escape character do not represent a hex-number.
-
escapeIllegalJcrChars
public static String escapeIllegalJcrChars(String name)
Deprecated.Escapes all illegal JCR name characters of a string. The encoding is loosely modeled after URI encoding, but only encodes the characters it absolutely needs to in order to make the resulting string a valid JCR name. UseunescapeIllegalJcrChars(String)
for decoding.QName EBNF:
simplename ::= onecharsimplename | twocharsimplename | threeormorecharname onecharsimplename ::= (* Any Unicode character except: '.', '/', ':', '[', ']', '*', '|' or any whitespace character *) twocharsimplename ::= '.' onecharsimplename | onecharsimplename '.' | onecharsimplename onecharsimplename threeormorecharname ::= nonspace string nonspace string ::= char | string char char ::= nonspace | ' ' nonspace ::= (* Any Unicode character except: '/', ':', '[', ']', '*', '|' or any whitespace character *)
- Parameters:
name
- the name to escape- Returns:
- the escaped name
-
escapeIllegalXpathSearchChars
public static String escapeIllegalXpathSearchChars(String s)
Deprecated.Escapes illegal XPath search characters at the end of a string.Example:
A search string like 'test?' will run into a ParseException documented in http://issues.apache.org/jira/browse/JCR-1248- Parameters:
s
- the string to encode- Returns:
- the escaped string
-
unescapeIllegalJcrChars
public static String unescapeIllegalJcrChars(String name)
Deprecated.Unescapes previously escaped jcr chars.Please note, that this does not exactly the same as the url related
unescape(String)
, since it handles the byte-encoding differently.- Parameters:
name
- the name to unescape- Returns:
- the unescaped name
-
getName
public static String getName(String path)
Deprecated.Returns the name part of the path. If the given path is already a name (i.e. contains no slashes) it is returned.- Parameters:
path
- the path- Returns:
- the name part or
null
ifpath
isnull
.
-
getName
public static String getName(String path, char delim)
Deprecated.Returns the name part of the path, delimited by the givendelim
. If the given path is already a name (i.e. contains nodelim
characters) it is returned.- Parameters:
path
- the pathdelim
- the delimiter- Returns:
- the name part or
null
ifpath
isnull
.
-
getName
public static String getName(String path, boolean ignoreTrailingSlash)
Deprecated.Same asgetName(String)
but adding the possibility to pass paths that end with a trailing '/'- Parameters:
path
- the path to get the name fromignoreTrailingSlash
-true
to ignore the trailing slash- Returns:
- the name
- See Also:
getName(String)
-
getNamespacePrefix
public static String getNamespacePrefix(String qname)
Deprecated.Returns the namespace prefix of the givenqname
. If the prefix is missing, an empty string is returned. Please note, that this method does not validate the name or prefix.the qname has the format: qname := [prefix ':'] local;
- Parameters:
qname
- a qualified name- Returns:
- the prefix of the name or "".
- Throws:
NullPointerException
- ifqname
isnull
- See Also:
getLocalName(String)
-
getLocalName
public static String getLocalName(String qname)
Deprecated.Returns the local name of the givenqname
. Please note, that this method does not validate the name.the qname has the format: qname := [prefix ':'] local;
- Parameters:
qname
- a qualified name- Returns:
- the localname
- Throws:
NullPointerException
- ifqname
isnull
- See Also:
getNamespacePrefix(String)
-
isSibling
public static boolean isSibling(String p1, String p2)
Deprecated.Determines, if two paths denote hierarchical siblins.- Parameters:
p1
- first pathp2
- second path- Returns:
- true if on same level, false otherwise
-
isDescendant
public static boolean isDescendant(String path, String descendant)
Deprecated.Determines if thedescendant
path is hierarchical a descendant ofpath
.- Parameters:
path
- the current pathdescendant
- the potential descendant- Returns:
true
if thedescendant
is a descendant;false
otherwise.
-
isDescendantOrEqual
public static boolean isDescendantOrEqual(String path, String descendant)
Deprecated.Determines if thedescendant
path is hierarchical a descendant ofpath
or equal to it.- Parameters:
path
- the path to checkdescendant
- the potential descendant- Returns:
true
if thedescendant
is a descendant or equal;false
otherwise.
-
getRelativeParent
public static String getRelativeParent(String path, int level)
Deprecated.Returns the nth relative parent of the path, where n=level.Example:
Text.getRelativeParent("/foo/bar/test", 1) == "/foo/bar"
- Parameters:
path
- the path of the pagelevel
- the level of the parent- Returns:
- the path of the relative parent
-
getRelativeParent
public static String getRelativeParent(String path, int level, boolean ignoreTrailingSlash)
Deprecated.Same asgetRelativeParent(String, int)
but adding the possibility to pass paths that end with a trailing '/'- Parameters:
path
- The path.level
- The level if the parent.ignoreTrailingSlash
-true
to ignore the trailing slash- Returns:
- the path of hte paerent
- See Also:
getRelativeParent(String, int)
-
getAbsoluteParent
public static String getAbsoluteParent(String path, int level)
Deprecated.Returns the nth absolute parent of the path, where n=level.Example:
Text.getAbsoluteParent("/foo/bar/test", 1) == "/foo/bar"
- Parameters:
path
- the path of the pagelevel
- the level of the parent- Returns:
- the absolute parent path
-
replaceVariables
public static String replaceVariables(Properties variables, String value, boolean ignoreMissing) throws IllegalArgumentException
Deprecated.Performs variable replacement on the given string value. Each${...}
sequence within the given value is replaced with the value of the named parser variable. If a variable is not found in the properties an IllegalArgumentException is thrown unlessignoreMissing
istrue
. In the later case, the missing variable is replaced by the empty string.- Parameters:
variables
- the variables to replacevalue
- the original valueignoreMissing
- iftrue
, missing variables are replaced by the empty string.- Returns:
- value after variable replacements
- Throws:
IllegalArgumentException
- if the replacement of a referenced variable is not found
-
-