Class EscapedCharacters
java.lang.Object
de.uplanet.lucy.server.scripting.velocity.callables.EscapedCharacters
@VelocityVariable("ESC")
@VelocityCallable("singleton")
public final class EscapedCharacters
extends Object
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongetAPOS()The single quote character (').The backslash character (\).getBANG()The exclamation mark character (!).getBSL()The backslash character (\).getCR()The carriage return character (CR).getCRLF()The carriage return / line feed character sequence (CR LF).getD()The dollar character ($).getEXCL()The exclamation mark character (!).The exclamation mark character (!).getH()The hash character (#).getLF()The line feed character (LF).getQUOT()The quotation mark character (").getTAB()The tab character (TAB).hexDecodeCharacter(String p_strHex) Decodes an upper-case hex literal as a character.
-
Field Details
-
INSTANCE
-
-
Method Details
-
getD
The dollar character ($). -
getH
The hash character (#). -
getEXCL
The exclamation mark character (!). -
getEXCLAMATION
The exclamation mark character (!). -
getBANG
The exclamation mark character (!). -
getBSL
The backslash character (\). -
getBACKSLASH
The backslash character (\). -
getCR
The carriage return character (CR). -
getLF
The line feed character (LF). -
getCRLF
The carriage return / line feed character sequence (CR LF). -
getQUOT
The quotation mark character ("). -
getAPOS
The single quote character ('). -
getTAB
The tab character (TAB). -
hexDecodeCharacter
Decodes an upper-case hex literal as a character.E.g.
hexDecodeCharacter("0x5C")returns the backslash\.- Parameters:
p_strHex-- Returns:
- A character string.
-