Package org.librdf.redland

Examples of org.librdf.redland.Stream


    return (contains_int != 0);
  }

  public Stream as_stream()
  {
    return new Stream(this.world, core.librdf_model_as_stream(this.object), this);
  }
View Full Code Here


    return new Stream(this.world, core.librdf_model_as_stream(this.object), this);
  }

  public Stream as_stream(Node context)
  {
    return new Stream(this.world, core.librdf_model_context_as_stream(this.object, context.__get_object()), this);
  }
View Full Code Here

    return new Stream(this.world, core.librdf_model_context_as_stream(this.object, context.__get_object()), this);
  }

  public Stream findStatements(Statement statement)
  {
    return new Stream(this.world, core.librdf_model_find_statements(this.object, statement.__get_object()), this);
  }
View Full Code Here

    return new Stream(this.world, core.librdf_model_find_statements(this.object, statement.__get_object()), this);
  }

  public Stream findStatements(Statement statement, Node context_node)
  {
    return new Stream(this.world, core.librdf_model_find_statements_in_context(this.object, statement.__get_object(), context_node.__get_object()), this);
  }
View Full Code Here

TOP

Related Classes of org.librdf.redland.Stream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.