Tabnine Logo
MutableQueryModifiers.isDistinct
Code IndexAdd Tabnine to your IDE (free)

How to use
isDistinct
method
in
it.unibz.inf.ontop.datalog.MutableQueryModifiers

Best Java code snippets using it.unibz.inf.ontop.datalog.MutableQueryModifiers.isDistinct (Showing top 4 results out of 315)

origin: it.unibz.inf.ontop/ontop-model

@Override
public void copy(MutableQueryModifiers other) {
  isDistinct = other.isDistinct();
  limit = other.getLimit();
  offset = other.getOffset();
  orderConditions.addAll(other.getSortConditions());
  groupConditions.addAll(other.getGroupConditions());
}
origin: it.unibz.inf.ontop/ontop-translation-sql

private boolean hasSelectDistinctStatement(DatalogProgram query) {
  boolean toReturn = false;
  if (query.getQueryModifiers().hasModifiers()) {
    toReturn = query.getQueryModifiers().isDistinct();
  }
  return toReturn;
}
origin: ontop/ontop

isDistinct = queryModifiers.hasModifiers() && queryModifiers.isDistinct();
isOrderBy = queryModifiers.hasModifiers() && !queryModifiers.getSortConditions().isEmpty();
origin: it.unibz.inf.ontop/ontop-reformulation-sql

isDistinct = queryModifiers.hasModifiers() && queryModifiers.isDistinct();
isOrderBy = queryModifiers.hasModifiers() && !queryModifiers.getSortConditions().isEmpty();
it.unibz.inf.ontop.datalogMutableQueryModifiersisDistinct

Popular methods of MutableQueryModifiers

  • hasModifiers
  • getLimit
  • getOffset
  • getSortConditions
  • addOrderCondition
  • getGroupConditions
  • setDistinct
  • setOffset
  • clone
  • copy
  • setLimit
  • setLimit

Popular in Java

  • Reading from database using SQL prepared statement
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now