Class Err


  • public class Err
    extends java.lang.Object
    Class containing utility methods for handling error messages
    • Constructor Summary

      Constructors 
      Constructor Description
      Err()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String abbreviateEQName​(java.lang.String eqName)  
      static java.lang.String abbreviateURI​(java.lang.String uri)
      Abbreviate a URI for use in error messages
      static java.lang.CharSequence depict​(Item item)
      Create a string representation of an item for use in an error message
      static java.lang.CharSequence depictSequence​(Sequence seq)  
      static java.lang.String depictSequenceStart​(SequenceIterator seq, int max, int actual)  
      static java.lang.CharSequence truncate30​(java.lang.CharSequence cs)  
      static java.lang.String wrap​(java.lang.CharSequence cs)
      Add delimiters to represent variable information within an error message
      static java.lang.String wrap​(java.lang.CharSequence cs, int valueType)
      Add delimiters to represent variable information within an error message
      static java.lang.String wrap​(Expression exp)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Err

        public Err()
    • Method Detail

      • wrap

        public static java.lang.String wrap​(java.lang.CharSequence cs)
        Add delimiters to represent variable information within an error message
        Parameters:
        cs - the variable information to be delimited
        Returns:
        the delimited variable information
      • wrap

        public static java.lang.String wrap​(java.lang.CharSequence cs,
                                            int valueType)
        Add delimiters to represent variable information within an error message
        Parameters:
        cs - the variable information to be delimited
        valueType - the type of value, e.g. element name or attribute name
        Returns:
        the delimited variable information
      • depict

        public static java.lang.CharSequence depict​(Item item)
        Create a string representation of an item for use in an error message
      • depictSequence

        public static java.lang.CharSequence depictSequence​(Sequence seq)
      • depictSequenceStart

        public static java.lang.String depictSequenceStart​(SequenceIterator seq,
                                                           int max,
                                                           int actual)
      • truncate30

        public static java.lang.CharSequence truncate30​(java.lang.CharSequence cs)
      • abbreviateURI

        public static java.lang.String abbreviateURI​(java.lang.String uri)
        Abbreviate a URI for use in error messages
        Parameters:
        uri - the full URI
        Returns:
        the URI, truncated at the last slash or to the last 15 characters, with a leading ellipsis, as appropriate
      • abbreviateEQName

        public static java.lang.String abbreviateEQName​(java.lang.String eqName)
      • wrap

        public static java.lang.String wrap​(Expression exp)