Class IrValues

java.lang.Object
org.eclipse.rdf4j.queryrender.sparql.ir.IrNode
org.eclipse.rdf4j.queryrender.sparql.ir.IrValues

public class IrValues extends IrNode
Textual IR node for a VALUES block. - varNames lists projected variable names without '?'. - rows holds textual terms per row; the renderer preserves the original ordering when configured to do so. - UNDEF is represented by the string literal "UNDEF" in a row position.
  • Constructor Details

    • IrValues

      public IrValues(boolean newScope)
  • Method Details

    • getVarNames

      public List<String> getVarNames()
    • getRows

      public List<List<String>> getRows()
    • print

      public void print(IrPrinter p)
      Description copied from class: IrNode
      Default no-op printing; concrete nodes override.
      Specified by:
      print in class IrNode