Uses of Class
be.SIRAPRISE.util.MissingEscapedCharacterException

Packages that use MissingEscapedCharacterException
be.SIRAPRISE.util   
 

Uses of MissingEscapedCharacterException in be.SIRAPRISE.util
 

Methods in be.SIRAPRISE.util that throw MissingEscapedCharacterException
static java.util.LinkedList<java.lang.String> BracketParser.createListFromEscaped(java.lang.String s)
          Creates a HashMap for a String in the general format Name1(value1)Name2(value2)...
static java.util.HashMap<java.lang.String,java.lang.String> BracketParser.createMapFromEscaped(java.lang.String s)
          Creates a HashMap for a String in the general format Name1(value1)Name2(value2)...
static java.util.Map<java.lang.String,java.lang.String> BracketParser.createMapFromEscapedString(java.lang.String s, boolean emptyMapAllowed)
          Parses a bracketed String and builds a hashmap with the information contained within the (map) value is the (attribute) value, also in string format.
static java.util.HashMap<java.lang.String,java.lang.String> BracketParser.createMapWithMandatoryValuesFromEscaped(java.lang.String s)
          Creates a HashMap for a String in the general format Name1(value1)Name2(value2)...
static void BracketParser.fillMapWithMandatoryValuesFromEscaped(java.lang.String s, java.util.Map<java.lang.String,java.lang.String> attributeValueMap)
           
static void BracketParser.fillNonEmptyMapWithMandatoryValuesFromEscaped(java.lang.String s, java.util.Map<java.lang.String,java.lang.String> attributeValueMap)
           
static NameValueResult BracketParser.getNameAndMandatoryValueFromEscaped(java.lang.String s, int startPos)
          Returns the 'name' part of an expression of the form "name(content)"
static NameValueResult BracketParser.getNameAndMandatoryValueUntrimmedFromEscaped(java.lang.String s, int startPos)
          Returns the 'name' part of an expression of the form "name(content)"
static NameValueResult BracketParser.getNameValueFromEscaped(java.lang.String s, int startPos)
          Returns the 'name' part of an expression of the form "name(content)"
static NameValueResult BracketParser.getNameValueUntrimmedFromEscaped(java.lang.String s, int startPos)
          Returns the 'name' part of an expression of the form "name(content)"
static BracketParseResult BracketParser.getUnMetaContentsWithinBrackets(java.lang.String s)
          Deprecated.  
static BracketParseResult BracketParser.getUnMetaContentsWithinBracketsUntrimmed(java.lang.String s)
          Deprecated.  
static java.lang.String BracketParser.unMeta(java.lang.String s)
          Translates strings in sira_prise meta language to their actual value.