Enum SQLOps

java.lang.Object
java.lang.Enum<SQLOps>
com.querydsl.sql.SQLOps
All Implemented Interfaces:
Operator, Serializable, Comparable<SQLOps>, java.lang.constant.Constable

public enum SQLOps extends Enum<SQLOps> implements Operator
SQLOps provides SQL specific operators
Author:
tiwe
  • Enum Constant Details

    • ALL

      public static final SQLOps ALL
    • CAST

      public static final SQLOps CAST
    • CORR

      public static final SQLOps CORR
    • COVARPOP

      public static final SQLOps COVARPOP
    • COVARSAMP

      public static final SQLOps COVARSAMP
    • CUMEDIST

      public static final SQLOps CUMEDIST
    • CUMEDIST2

      public static final SQLOps CUMEDIST2
    • DENSERANK

      public static final SQLOps DENSERANK
    • DENSERANK2

      public static final SQLOps DENSERANK2
    • FIRSTVALUE

      public static final SQLOps FIRSTVALUE
    • FOR_SHARE

      public static final SQLOps FOR_SHARE
    • FOR_UPDATE

      public static final SQLOps FOR_UPDATE
    • LAG

      public static final SQLOps LAG
    • LASTVALUE

      public static final SQLOps LASTVALUE
    • LEAD

      public static final SQLOps LEAD
    • LISTAGG

      public static final SQLOps LISTAGG
    • NEXTVAL

      public static final SQLOps NEXTVAL
    • NO_WAIT

      public static final SQLOps NO_WAIT
    • NTHVALUE

      public static final SQLOps NTHVALUE
    • NTILE

      public static final SQLOps NTILE
    • PERCENTRANK

      public static final SQLOps PERCENTRANK
    • PERCENTRANK2

      public static final SQLOps PERCENTRANK2
    • PERCENTILECONT

      public static final SQLOps PERCENTILECONT
    • PERCENTILEDISC

      public static final SQLOps PERCENTILEDISC
    • QUALIFY

      public static final SQLOps QUALIFY
    • RANK

      public static final SQLOps RANK
    • RANK2

      public static final SQLOps RANK2
    • REGR_SLOPE

      public static final SQLOps REGR_SLOPE
    • REGR_INTERCEPT

      public static final SQLOps REGR_INTERCEPT
    • REGR_COUNT

      public static final SQLOps REGR_COUNT
    • REGR_R2

      public static final SQLOps REGR_R2
    • REGR_AVGX

      public static final SQLOps REGR_AVGX
    • REGR_AVGY

      public static final SQLOps REGR_AVGY
    • REGR_SXX

      public static final SQLOps REGR_SXX
    • REGR_SYY

      public static final SQLOps REGR_SYY
    • REGR_SXY

      public static final SQLOps REGR_SXY
    • RATIOTOREPORT

      public static final SQLOps RATIOTOREPORT
    • ROWNUMBER

      public static final SQLOps ROWNUMBER
    • STDDEV

      public static final SQLOps STDDEV
    • STDDEVPOP

      public static final SQLOps STDDEVPOP
    • STDDEVSAMP

      public static final SQLOps STDDEVSAMP
    • STDDEV_DISTINCT

      public static final SQLOps STDDEV_DISTINCT
    • UNION

      public static final SQLOps UNION
    • UNION_ALL

      public static final SQLOps UNION_ALL
    • VARIANCE

      public static final SQLOps VARIANCE
    • VARPOP

      public static final SQLOps VARPOP
    • VARSAMP

      public static final SQLOps VARSAMP
    • WITH_ALIAS

      public static final SQLOps WITH_ALIAS
    • WITH_COLUMNS

      public static final SQLOps WITH_COLUMNS
    • LOCK_IN_SHARE_MODE

      public static final SQLOps LOCK_IN_SHARE_MODE
    • WITH_REPEATABLE_READ

      public static final SQLOps WITH_REPEATABLE_READ
    • GROUP_CONCAT

      public static final SQLOps GROUP_CONCAT
    • GROUP_CONCAT2

      public static final SQLOps GROUP_CONCAT2
    • SET_PATH

      public static final SQLOps SET_PATH
    • SET_LITERAL

      public static final SQLOps SET_LITERAL
  • Field Details

  • Method Details

    • values

      public static SQLOps[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SQLOps valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getType

      public Class<?> getType()
      Specified by:
      getType in interface Operator