Tabnine Logo
AsOfClause.isUniversal
Code IndexAdd Tabnine to your IDE (free)

How to use
isUniversal
method
in
org.eclipse.persistence.history.AsOfClause

Best Java code snippets using org.eclipse.persistence.history.AsOfClause.isUniversal (Showing top 6 results out of 315)

origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

public void setSelectionCriteria(Expression expression) {
  super.setSelectionCriteria(expression);
  if ((expression != null) && (defaultBuilder != null) && (defaultBuilder.getQueryClass() == null)){
    // For flashback: Must make sure expression and defaultBuilder always in sync.
    ExpressionBuilder newBuilder = expression.getBuilder();
    if (newBuilder != defaultBuilder) {
      if (hasAsOfClause() && getAsOfClause().isUniversal()) {
        newBuilder.asOf(defaultBuilder.getAsOfClause());
      }
      defaultBuilder = newBuilder;
    }
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * PUBLIC:
 * Set the Expression/where clause of the query.
 * The expression should be defined using the query's ExpressionBuilder.
 */
@Override
public void setSelectionCriteria(Expression expression) {
  super.setSelectionCriteria(expression);
  if ((expression != null) && (this.defaultBuilder != null) && (this.defaultBuilder.getQueryClass() == null)){
    // For flashback: Must make sure expression and defaultBuilder always in sync.
    ExpressionBuilder newBuilder = expression.getBuilder();
    if (newBuilder != this.defaultBuilder) {
      if (hasAsOfClause() && getAsOfClause().isUniversal()) {
        newBuilder.asOf(this.defaultBuilder.getAsOfClause());
      }
      this.defaultBuilder = newBuilder;
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * PUBLIC:
 * Set the Expression/where clause of the query.
 * The expression should be defined using the query's ExpressionBuilder.
 */
@Override
public void setSelectionCriteria(Expression expression) {
  super.setSelectionCriteria(expression);
  if ((expression != null) && (this.defaultBuilder != null) && (this.defaultBuilder.getQueryClass() == null)){
    // For flashback: Must make sure expression and defaultBuilder always in sync.
    ExpressionBuilder newBuilder = expression.getBuilder();
    if (newBuilder != this.defaultBuilder) {
      if (hasAsOfClause() && getAsOfClause().isUniversal()) {
        newBuilder.asOf(this.defaultBuilder.getAsOfClause());
      }
      this.defaultBuilder = newBuilder;
    }
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

} else if (builder.hasAsOfClause() && builder.getAsOfClause().isUniversal()) {
origin: org.eclipse.persistence/org.eclipse.persistence.core

} else if (builder.hasAsOfClause() && builder.getAsOfClause().isUniversal()) {
origin: com.haulmont.thirdparty/eclipselink

} else if (builder.hasAsOfClause() && builder.getAsOfClause().isUniversal()) {
org.eclipse.persistence.historyAsOfClauseisUniversal

Javadoc

PUBLIC: Answers if this is a UniversalAsOfClause, one to be applied to the entire selection criteria.

Used when a query is made as of a past time.

Popular methods of AsOfClause

  • equals
    INTERNAL: Return if the as of is equal to the other. Equality of asOf clauses is complex (with subcl
  • getValue
    PUBLIC: The past time represented by the receiver. Either a timestamp, a system change number, or an
  • printSQL
    INTERNAL: Prints the as of clause for an expression inside of the FROM clause.
  • toString
  • <init>

Popular in Java

  • Making http post requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • runOnUiThread (Activity)
  • setContentView (Activity)
  • Path (java.nio.file)
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • JButton (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • CodeWhisperer alternatives
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