Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html
 Thu Feb  9 01:59:06 2017
@@ -25,87 +25,90 @@
 <a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em 
class="jxr_javadoccomment"> */</em>
 <a class="jxr_linenumber" name="L18" href="#L18">18</a>  <strong 
class="jxr_keyword">package</strong> org.apache.commons.rdf.jsonldjava;
 <a class="jxr_linenumber" name="L19" href="#L19">19</a>  
-<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <strong 
class="jxr_keyword">import</strong> java.util.Objects;
-<a class="jxr_linenumber" name="L21" href="#L21">21</a>  <strong 
class="jxr_keyword">import</strong> java.util.Optional;
-<a class="jxr_linenumber" name="L22" href="#L22">22</a>  
-<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.api.IRI;
-<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.api.Literal;
-<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.simple.Types;
-<a class="jxr_linenumber" name="L26" href="#L26">26</a>  
-<a class="jxr_linenumber" name="L27" href="#L27">27</a>  <strong 
class="jxr_keyword">import</strong> com.github.jsonldjava.core.RDFDataset.Node;
-<a class="jxr_linenumber" name="L28" href="#L28">28</a>  
-<a class="jxr_linenumber" name="L29" href="#L29">29</a>  <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">interface</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteral</a>
 <strong class="jxr_keyword">extends</strong> JsonLdTerm, <a 
href="../../../../../org/apache/commons/rdf/api/Literal.html">Literal</a> {
-<a class="jxr_linenumber" name="L30" href="#L30">30</a>  }
-<a class="jxr_linenumber" name="L31" href="#L31">31</a>  
-<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong 
class="jxr_keyword">class</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteralImpl</a>
 <strong class="jxr_keyword">extends</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdTerm.html">JsonLdTermImpl</a>
 <strong class="jxr_keyword">implements</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteral</a>
 {
-<a class="jxr_linenumber" name="L33" href="#L33">33</a>  
-<a class="jxr_linenumber" name="L34" href="#L34">34</a>      <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteralImpl</a>(<strong
 class="jxr_keyword">final</strong> Node node) {
-<a class="jxr_linenumber" name="L35" href="#L35">35</a>          <strong 
class="jxr_keyword">super</strong>(node);
-<a class="jxr_linenumber" name="L36" href="#L36">36</a>          <strong 
class="jxr_keyword">if</strong> (!node.isLiteral()) {
-<a class="jxr_linenumber" name="L37" href="#L37">37</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalArgumentException(<span class="jxr_string">"Node is not a 
Literal:"</span> + node);
-<a class="jxr_linenumber" name="L38" href="#L38">38</a>          }
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>      }
-<a class="jxr_linenumber" name="L40" href="#L40">40</a>  
-<a class="jxr_linenumber" name="L41" href="#L41">41</a>      @Override
-<a class="jxr_linenumber" name="L42" href="#L42">42</a>      <strong 
class="jxr_keyword">public</strong> String ntriplesString() {
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>          <strong 
class="jxr_keyword">final</strong> StringBuilder sb = <strong 
class="jxr_keyword">new</strong> StringBuilder();
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>          
sb.append('&quot;');
-<a class="jxr_linenumber" name="L45" href="#L45">45</a>          <em 
class="jxr_comment">// Escape special characters</em>
-<a class="jxr_linenumber" name="L46" href="#L46">46</a>          
sb.append(getLexicalForm().replace(<span 
class="jxr_string">"&#92;&#92;"</span>, <span 
class="jxr_string">"&#92;&#92;&#92;&#92;"</span>). <em class="jxr_comment">// 
escaped to &#92;&#92;</em>
-<a class="jxr_linenumber" name="L47" href="#L47">47</a>                  
replace(<span class="jxr_string">"\&quot;"</span>, <span 
class="jxr_string">"&#92;&#92;\&quot;"</span>). <em class="jxr_comment">// 
escaped to \&quot;</em>
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>                  
replace(<span class="jxr_string">"\r"</span>, <span 
class="jxr_string">"&#92;&#92;r"</span>). <em class="jxr_comment">// escaped to 
\r</em>
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>                  
replace(<span class="jxr_string">"\n"</span>, <span 
class="jxr_string">"&#92;&#92;n"</span>)); <em class="jxr_comment">// escaped 
to \n</em>
-<a class="jxr_linenumber" name="L50" href="#L50">50</a>          
sb.append('&quot;');
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>  
-<a class="jxr_linenumber" name="L52" href="#L52">52</a>          <strong 
class="jxr_keyword">if</strong> (getLanguageTag().isPresent()) {
-<a class="jxr_linenumber" name="L53" href="#L53">53</a>              
sb.append(<span class="jxr_string">"@"</span>);
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>              
sb.append(getLanguageTag().get());
-<a class="jxr_linenumber" name="L55" href="#L55">55</a>          } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(!getDatatype().equals(Types.XSD_STRING)) {
-<a class="jxr_linenumber" name="L56" href="#L56">56</a>              
sb.append(<span class="jxr_string">"^^"</span>);
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>              
sb.append(getDatatype().ntriplesString());
-<a class="jxr_linenumber" name="L58" href="#L58">58</a>          }
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong 
class="jxr_keyword">return</strong> sb.toString();
-<a class="jxr_linenumber" name="L60" href="#L60">60</a>      }
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>  
-<a class="jxr_linenumber" name="L62" href="#L62">62</a>      @Override
-<a class="jxr_linenumber" name="L63" href="#L63">63</a>      <strong 
class="jxr_keyword">public</strong> String getLexicalForm() {
-<a class="jxr_linenumber" name="L64" href="#L64">64</a>          <strong 
class="jxr_keyword">return</strong> node.getValue();
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <strong 
class="jxr_keyword">import</strong> java.util.Locale;
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  <strong 
class="jxr_keyword">import</strong> java.util.Objects;
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <strong 
class="jxr_keyword">import</strong> java.util.Optional;
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.api.IRI;
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.api.Literal;
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>  <strong 
class="jxr_keyword">import</strong> org.apache.commons.rdf.simple.Types;
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>  <strong 
class="jxr_keyword">import</strong> com.github.jsonldjava.core.RDFDataset.Node;
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>  
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>  <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">interface</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteral</a>
 <strong class="jxr_keyword">extends</strong> JsonLdTerm, <a 
href="../../../../../org/apache/commons/rdf/api/Literal.html">Literal</a> {
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  }
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>  <strong 
class="jxr_keyword">class</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteralImpl</a>
 <strong class="jxr_keyword">extends</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdTerm.html">JsonLdTermImpl</a>
 <strong class="jxr_keyword">implements</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteral</a>
 {
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>  
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>      <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteralImpl</a>(<strong
 class="jxr_keyword">final</strong> Node node) {
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>          <strong 
class="jxr_keyword">super</strong>(node);
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>          <strong 
class="jxr_keyword">if</strong> (!node.isLiteral()) {
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>              <strong 
class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> 
IllegalArgumentException(<span class="jxr_string">"Node is not a 
Literal:"</span> + node);
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>          }
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>      }
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>  
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>      <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">static</strong> String lowerCase(String langTag) { 
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>          <strong 
class="jxr_keyword">return</strong> langTag.toLowerCase(Locale.ROOT);
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>      }
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>      @Override
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>      <strong 
class="jxr_keyword">public</strong> String ntriplesString() {
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>          <strong 
class="jxr_keyword">final</strong> StringBuilder sb = <strong 
class="jxr_keyword">new</strong> StringBuilder();
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          
sb.append('&quot;');
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>          <em 
class="jxr_comment">// Escape special characters</em>
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          
sb.append(getLexicalForm().replace(<span 
class="jxr_string">"&#92;&#92;"</span>, <span 
class="jxr_string">"&#92;&#92;&#92;&#92;"</span>). <em class="jxr_comment">// 
escaped to &#92;&#92;</em>
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>                  
replace(<span class="jxr_string">"\&quot;"</span>, <span 
class="jxr_string">"&#92;&#92;\&quot;"</span>). <em class="jxr_comment">// 
escaped to \&quot;</em>
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>                  
replace(<span class="jxr_string">"\r"</span>, <span 
class="jxr_string">"&#92;&#92;r"</span>). <em class="jxr_comment">// escaped to 
\r</em>
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>                  
replace(<span class="jxr_string">"\n"</span>, <span 
class="jxr_string">"&#92;&#92;n"</span>)); <em class="jxr_comment">// escaped 
to \n</em>
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>          
sb.append('&quot;');
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>  
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>          <strong 
class="jxr_keyword">if</strong> (getLanguageTag().isPresent()) {
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>              
sb.append(<span class="jxr_string">"@"</span>);
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>              
sb.append(getLanguageTag().get());
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>          } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(!getDatatype().equals(Types.XSD_STRING)) {
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>              
sb.append(<span class="jxr_string">"^^"</span>);
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>              
sb.append(getDatatype().ntriplesString());
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>          }
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          <strong 
class="jxr_keyword">return</strong> sb.toString();
 <a class="jxr_linenumber" name="L65" href="#L65">65</a>      }
 <a class="jxr_linenumber" name="L66" href="#L66">66</a>  
 <a class="jxr_linenumber" name="L67" href="#L67">67</a>      @Override
-<a class="jxr_linenumber" name="L68" href="#L68">68</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../../org/apache/commons/rdf/api/IRI.html">IRI</a> getDatatype() 
{
-<a class="jxr_linenumber" name="L69" href="#L69">69</a>          <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdIRI.html">JsonLdIRIImpl</a>(node.getDatatype());
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>      <strong 
class="jxr_keyword">public</strong> String getLexicalForm() {
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>          <strong 
class="jxr_keyword">return</strong> node.getValue();
 <a class="jxr_linenumber" name="L70" href="#L70">70</a>      }
 <a class="jxr_linenumber" name="L71" href="#L71">71</a>  
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>      @Override
-<a class="jxr_linenumber" name="L73" href="#L73">73</a>      <strong 
class="jxr_keyword">public</strong> Optional&lt;String&gt; getLanguageTag() {
-<a class="jxr_linenumber" name="L74" href="#L74">74</a>          <strong 
class="jxr_keyword">return</strong> Optional.ofNullable(node.getLanguage());
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../../org/apache/commons/rdf/api/IRI.html">IRI</a> getDatatype() 
{
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>          <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdIRI.html">JsonLdIRIImpl</a>(node.getDatatype());
 <a class="jxr_linenumber" name="L75" href="#L75">75</a>      }
 <a class="jxr_linenumber" name="L76" href="#L76">76</a>  
 <a class="jxr_linenumber" name="L77" href="#L77">77</a>      @Override
-<a class="jxr_linenumber" name="L78" href="#L78">78</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> 
hashCode() {
-<a class="jxr_linenumber" name="L79" href="#L79">79</a>          <em 
class="jxr_comment">// Should be the same as</em>
-<a class="jxr_linenumber" name="L80" href="#L80">80</a>          <em 
class="jxr_comment">// Objects.hash(getLexicalForm(), getDatatype(), 
getLanguageTag());</em>
-<a class="jxr_linenumber" name="L81" href="#L81">81</a>          <strong 
class="jxr_keyword">return</strong> Objects.hash(node.getValue(), 
node.getDatatype(), node.getLanguage());
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>      }
-<a class="jxr_linenumber" name="L83" href="#L83">83</a>  
-<a class="jxr_linenumber" name="L84" href="#L84">84</a>      @Override
-<a class="jxr_linenumber" name="L85" href="#L85">85</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(<strong 
class="jxr_keyword">final</strong> Object obj) {
-<a class="jxr_linenumber" name="L86" href="#L86">86</a>          <strong 
class="jxr_keyword">if</strong> (obj instanceof JsonLdLiteral) {
-<a class="jxr_linenumber" name="L87" href="#L87">87</a>              <strong 
class="jxr_keyword">final</strong> <a 
href="../../../../../org/apache/commons/rdf/jsonldjava/JsonLdLiteral.html">JsonLdLiteral</a>
 other = (JsonLdLiteral) obj;
-<a class="jxr_linenumber" name="L88" href="#L88">88</a>              <strong 
class="jxr_keyword">return</strong> 
asJsonLdNode().compareTo(other.asJsonLdNode()) == 0;
-<a class="jxr_linenumber" name="L89" href="#L89">89</a>          }
-<a class="jxr_linenumber" name="L90" href="#L90">90</a>          <strong 
class="jxr_keyword">if</strong> (obj instanceof Literal) {
-<a class="jxr_linenumber" name="L91" href="#L91">91</a>              <strong 
class="jxr_keyword">final</strong> <a 
href="../../../../../org/apache/commons/rdf/api/Literal.html">Literal</a> other 
= (Literal) obj;
-<a class="jxr_linenumber" name="L92" href="#L92">92</a>              <strong 
class="jxr_keyword">return</strong> 
getLexicalForm().equals(other.getLexicalForm()) &amp;&amp; 
getDatatype().equals(other.getDatatype())
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>                      
&amp;&amp; getLanguageTag().equals(other.getLanguageTag());
-<a class="jxr_linenumber" name="L94" href="#L94">94</a>          }
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>          <strong 
class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="L96" href="#L96">96</a>  
-<a class="jxr_linenumber" name="L97" href="#L97">97</a>      }
-<a class="jxr_linenumber" name="L98" href="#L98">98</a>  }
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>      <strong 
class="jxr_keyword">public</strong> Optional&lt;String&gt; getLanguageTag() {
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>          <strong 
class="jxr_keyword">return</strong> Optional.ofNullable(node.getLanguage());
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>      }
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>  
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>      @Override
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> 
hashCode() {
+<a class="jxr_linenumber" name="L84" href="#L84">84</a>          <strong 
class="jxr_keyword">return</strong> Objects.hash(node.getValue(), 
node.getDatatype(), 
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>                  
getLanguageTag().map(JsonLdLiteralImpl::lowerCase));
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>      }
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>  
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>      @Override
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>      <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> equals(<strong 
class="jxr_keyword">final</strong> Object obj) {
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>          <em 
class="jxr_comment">// COMMONSRDF-56: Do **not** use </em>
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>          <em 
class="jxr_comment">// asJsonLdNode().compareTo(other.asJsonLdNode())</em>
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>          <strong 
class="jxr_keyword">if</strong> (obj instanceof Literal) {
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>              <strong 
class="jxr_keyword">final</strong> <a 
href="../../../../../org/apache/commons/rdf/api/Literal.html">Literal</a> other 
= (Literal) obj;
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>              <strong 
class="jxr_keyword">return</strong> 
getLexicalForm().equals(other.getLexicalForm()) 
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>                      
&amp;&amp; getDatatype().equals(other.getDatatype())
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>                      
&amp;&amp; getLanguageTag().map(JsonLdLiteralImpl::lowerCase)
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>                        
  .equals(other.getLanguageTag().map(JsonLdLiteralImpl::lowerCase));
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>          }
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>          <strong 
class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>     }
+<a class="jxr_linenumber" name="L101" href="#L101">101</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuad.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuad.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuad.html
 Thu Feb  9 01:59:06 2017
@@ -63,6 +63,6 @@
 <a class="jxr_linenumber" name="L55" href="#L55">55</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuadLike.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuadLike.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdQuadLike.html
 Thu Feb  9 01:59:06 2017
@@ -80,9 +80,14 @@
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../../org/apache/commons/rdf/api/Quad.html">Quad</a> 
asJsonLdQuad() {
 <a class="jxr_linenumber" name="L73" href="#L73">73</a>          <strong 
class="jxr_keyword">return</strong> quad;
 <a class="jxr_linenumber" name="L74" href="#L74">74</a>      }
-<a class="jxr_linenumber" name="L75" href="#L75">75</a>  }
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>      
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>      @Override
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>      <strong 
class="jxr_keyword">public</strong> String toString() {
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>          <strong 
class="jxr_keyword">return</strong> quad.toString();
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>      }
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdRDF.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdRDF.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdRDF.html
 Thu Feb  9 01:59:06 2017
@@ -327,6 +327,6 @@
 <a class="jxr_linenumber" name="L319" href="#L319">319</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTerm.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTerm.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTerm.html
 Thu Feb  9 01:59:06 2017
@@ -59,6 +59,6 @@
 <a class="jxr_linenumber" name="L51" href="#L51">51</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTriple.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTriple.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTriple.html
 Thu Feb  9 01:59:06 2017
@@ -61,6 +61,6 @@
 <a class="jxr_linenumber" name="L53" href="#L53">53</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTripleLike.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTripleLike.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdTripleLike.html
 Thu Feb  9 01:59:06 2017
@@ -40,6 +40,6 @@
 <a class="jxr_linenumber" name="L32" href="#L32">32</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html
 Thu Feb  9 01:59:06 2017
@@ -121,6 +121,6 @@
 <a class="jxr_linenumber" name="L113" href="#L113">113</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/JsonLdParser.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/JsonLdParser.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/JsonLdParser.html
 Thu Feb  9 01:59:06 2017
@@ -168,6 +168,6 @@
 <a class="jxr_linenumber" name="L160" href="#L160">160</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/package-summary.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/package-summary.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/experimental/package-summary.html
 Thu Feb  9 01:59:06 2017
@@ -63,7 +63,7 @@
        </div>
                                <hr />
                <div id="footer">
-                       Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.
+                       Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.
                </div>
        </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/package-summary.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/package-summary.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/jsonldjava/package-summary.html
 Thu Feb  9 01:59:06 2017
@@ -178,7 +178,7 @@
        </div>
                                <hr />
                <div id="footer">
-                       Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.
+                       Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.
                </div>
        </body>
 </html>
\ No newline at end of file

Modified: 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/rdf4j/ClosableIterable.html
==============================================================================
--- 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/rdf4j/ClosableIterable.html
 (original)
+++ 
websites/production/commons/content/proper/commons-rdf/xref/org/apache/commons/rdf/rdf4j/ClosableIterable.html
 Thu Feb  9 01:59:06 2017
@@ -46,6 +46,6 @@
 <a class="jxr_linenumber" name="L38" href="#L38">38</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2015&#x2013;2016 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2015&#x2013;2017 <a 
href="https://www.apache.org/";>The Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>
\ No newline at end of file


Reply via email to