Codota Logo
Node_Variable
Code IndexAdd Codota to your IDE (free)

How to use
Node_Variable
in
com.hp.hpl.jena.graph

Best Java code snippets using com.hp.hpl.jena.graph.Node_Variable (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: fr.inria.eventcloud/eventcloud-core

/**
 * {@inheritDoc}
 */
@Override
public String unparse(Object value) {
  return ((Node_Variable) value).getName();
}
origin: com.hp.hpl.jena/arq

@Override
public boolean equals(Object other)
{ 
  if ( this == other ) return true ;
  if ( ! ( other instanceof Var ) ) return false ;
  return super.equals(other) ;
}
 
origin: com.hp.hpl.jena/arq

@Override
public int hashCode() { return super.hashCode() ; }
origin: openimaj/openimaj

@Override
public void write(Kryo kryo, Output output, Node_Variable object) {
  final String blankNodeString = object.toString();
  output.writeString(blankNodeString);
}
origin: org.apache.clerezza.ext/org.apache.jena.jena-core

{ @Override
Node construct( Object x ) { return new Node_Variable( x ); } };

origin: org.apache.clerezza.ext/org.apache.jena.jena-core

/** make a variable node with a given name */
public static Node createVariable( String name )
  { return Node.create( Node.makeVariable, Node_Variable.variable( name ) ); }
origin: org.openimaj.storm/core-storm

@Override
public void write(Kryo kryo, Output output, Node_Variable object) {
  final String blankNodeString = object.toString();
  output.writeString(blankNodeString);
}
origin: com.hp.hpl.jena/arq

private Var(Node_Variable v)     { this( v.getName() ) ; }
 
origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

@Override
public final boolean equals(Object other)
{ 
  if ( this == other ) return true ;
  if ( ! ( other instanceof Var ) ) return false ;
  return super.equals(other) ;
}

origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

private Var(String varName)      { super(varName) ; hashCodeValue = super.hashCode() ; }

origin: org.apache.clerezza.ext/org.apache.jena.jena-arq

private Var(Node_Variable v)     { this( v.getName() ) ; }

origin: org.apache.clerezza.ext/org.apache.jena.jena-core

@Override
public Object visitWith( NodeVisitor v )
  { return v.visitVariable( this, getName() ); }
  
com.hp.hpl.jena.graphNode_Variable

Javadoc

"variable" nodes; these are outside the RDF2003 specification, but are used internally for "placeholder" nodes where blank nodes would be wrong, most specifically in Query.

Most used methods

  • getName
  • equals
  • hashCode
  • <init>
    Initialise this Node_Variable from a string name, which becomes wrapped in a VariableName.
  • toString
  • variable

Popular in Java

  • Reading from database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • startActivity (Activity)
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • JPanel (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now