Class SimpleBNode

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String id
      The blank node's identifier.
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected SimpleBNode()
      Creates a new, unitialized blank node.
      protected SimpleBNode​(java.lang.String id)
      Creates a new blank node with the supplied identifier.
    • Field Detail

      • id

        private java.lang.String id
        The blank node's identifier.
    • Constructor Detail

      • SimpleBNode

        protected SimpleBNode()
        Creates a new, unitialized blank node. This blank node's ID needs to be set before the normal methods can be used.
      • SimpleBNode

        protected SimpleBNode​(java.lang.String id)
        Creates a new blank node with the supplied identifier.
        Parameters:
        id - The identifier for this blank node, must not be null.
    • Method Detail

      • getID

        public java.lang.String getID()
        Description copied from interface: BNode
        Retrieves this blank node's identifier.
        Returns:
        A blank node identifier.
      • setID

        protected void setID​(java.lang.String id)