Class URIProperty

java.lang.Object
org.apache.fop.fo.properties.Property
org.apache.fop.fo.properties.URIProperty

public class URIProperty extends Property
Class modeling a property that has a value of type <uri-specification>. The purpose is mainly to support resolution of a specified relative URI against a specified or inherited xml:base during the property refinement stage. If no xml:base has been specified, only the original URI, as it appears in the source document, is stored as the property's specified value.
  • Field Details

    • resolvedURI

      private URI resolvedURI
      will be null if the URI is not resolved against an xml:base
  • Constructor Details

    • URIProperty

      protected URIProperty(URI uri)
      Default constructor, to create a URIProperty from a java.net.URI directly.
      Parameters:
      uri - a resolved java.net.URI
    • URIProperty

      private URIProperty(String uri, boolean resolve)
      Alternate constructor, to create a URIProperty from a string representation.
      Parameters:
      uri - a java.lang.String representing the URI
      resolve - flag indicating whether this URI was the result of resolution
      Throws:
      IllegalArgumentException - if the URI should be resolved, but is not valid.
  • Method Details

    • getString

      public String getString()
      Return a string representing the resolved URI, or the specified value if the URI is not resolved against an xml:base
      Overrides:
      getString in class Property
      Returns:
      a string representing the URI
    • toString

      public String toString()
      Overrides:
      toString in class Property
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object