Tabnine Logo
Expression.isAutoIncrement
Code IndexAdd Tabnine to your IDE (free)

How to use
isAutoIncrement
method
in
org.h2.expression.Expression

Best Java code snippets using org.h2.expression.Expression.isAutoIncrement (Showing top 9 results out of 315)

origin: com.h2database/h2

@Override
public boolean isAutoIncrement() {
  return expr.isAutoIncrement();
}
origin: com.h2database/h2

@Override
public boolean isAutoIncrement(int i) {
  return expressions[i].isAutoIncrement();
}
origin: com.h2database/h2

@Override
public boolean isAutoIncrement(int i) {
  return expressions[i].isAutoIncrement();
}
origin: org.wowtools/h2

@Override
public boolean isAutoIncrement() {
  return expr.isAutoIncrement();
}
origin: com.eventsourcing/h2

@Override
public boolean isAutoIncrement(int i) {
  return expressions[i].isAutoIncrement();
}
origin: org.wowtools/h2

@Override
public boolean isAutoIncrement(int i) {
  return expressions[i].isAutoIncrement();
}
origin: com.eventsourcing/h2

@Override
public boolean isAutoIncrement() {
  return expr.isAutoIncrement();
}
origin: com.h2database/com.springsource.org.h2

public boolean isAutoIncrement(int i) {
  return expressions[i].isAutoIncrement();
}
origin: com.h2database/com.springsource.org.h2

public boolean isAutoIncrement() {
  return expr.isAutoIncrement();
}
org.h2.expressionExpressionisAutoIncrement

Javadoc

Check if this is an auto-increment column.

Popular methods of Expression

  • getAlias
    Get the alias name of a column or SQL expression if it is not an aliased expression.
  • getDisplaySize
    Get the display size of this expression.
  • getNonAliasExpression
    Returns the main expression, skipping aliases.
  • getNotIfPossible
    If it is possible, return the negated expression. This is used to optimize NOT expressions: NOT ID>1
  • getPrecision
    Get the precision of this expression.
  • getScale
    Get the scale of this expression.
  • getType
    Return the data type. The data type may not be known before the optimization phase.
  • getValue
    Return the resulting value for the current row.
  • isConstant
    Check if this expression will always return the same value.
  • addFilterConditions
    Add conditions to a table filter if they can be evaluated.
  • createIndexConditions
    Create index conditions if possible and attach them to the table filter.
  • getBooleanValue
    Get the value in form of a boolean expression. Returns true or false. In this database, everything c
  • createIndexConditions,
  • getBooleanValue,
  • getColumnName,
  • getCost,
  • getNullable,
  • getSQL,
  • getSchemaName,
  • getTableAlias,
  • getTableName

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • getResourceAsStream (ClassLoader)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • 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