Class ImmutableRdfResource

  • All Implemented Interfaces:
    RdfResource, RdfValue

    @Deprecated
    final class ImmutableRdfResource
    extends java.lang.Object
    implements RdfResource
    Deprecated.
    since 1.7.0 - use an alternative RDF primitives library.
    This class is deprecated as of version 1.7.0.

    Please use Titanium RDF Primitives or any other third-party library to materialize RDF primitives.

    See Also:
    Titanium RDF Primitives
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private boolean blankNode
      Deprecated.
       
      private java.lang.String value
      Deprecated.
       
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected ImmutableRdfResource​(java.lang.String value, boolean isBlankNode)
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      Deprecated.
       
      java.lang.String getValue()
      Deprecated.
      Returns raw String representation of the value.
      int hashCode()
      Deprecated.
       
      boolean isBlankNode()
      Deprecated.
      Indicates if the value type is blank node identifier.
      boolean isIRI()
      Deprecated.
      Indicates if the value type is an absolute IRI.
      java.lang.String toString()
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • value

        private final java.lang.String value
        Deprecated.
      • blankNode

        private final boolean blankNode
        Deprecated.
    • Constructor Detail

      • ImmutableRdfResource

        protected ImmutableRdfResource​(java.lang.String value,
                                       boolean isBlankNode)
        Deprecated.
    • Method Detail

      • isBlankNode

        public boolean isBlankNode()
        Deprecated.
        Description copied from interface: RdfValue
        Indicates if the value type is blank node identifier.
        Specified by:
        isBlankNode in interface RdfValue
        Returns:
        true if the value type is blank node, false otherwise.
      • isIRI

        public boolean isIRI()
        Deprecated.
        Description copied from interface: RdfValue
        Indicates if the value type is an absolute IRI.
        Specified by:
        isIRI in interface RdfValue
        Returns:
        true if the value type is IRI, false otherwise.
      • getValue

        public java.lang.String getValue()
        Deprecated.
        Description copied from interface: RdfValue
        Returns raw String representation of the value.
        Specified by:
        getValue in interface RdfValue
        Returns:
        text representing the value.
      • hashCode

        public int hashCode()
        Deprecated.
        Specified by:
        hashCode in interface RdfValue
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Deprecated.
        Specified by:
        equals in interface RdfValue
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Deprecated.
        Specified by:
        toString in interface RdfValue
        Overrides:
        toString in class java.lang.Object