| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
WindowIgnoreNullsStep<T> |
Field.firstValue()
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lag()
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lag(int offset)
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lag(int offset,
Field<T> defaultValue)
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lag(int offset,
T defaultValue)
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lastValue()
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lead()
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lead(int offset)
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lead(int offset,
Field<T> defaultValue)
This method is part of the pre-2.0 API.
|
WindowIgnoreNullsStep<T> |
Field.lead(int offset,
T defaultValue)
This method is part of the pre-2.0 API.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> WindowIgnoreNullsStep<T> |
Factory.firstValue(Field<T> field)
The
first_value(field) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lag(Field<T> field)
The
lag(field) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lag(Field<T> field,
int offset)
The
lag(field, offset) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lag(Field<T> field,
int offset,
Field<T> defaultValue)
The
lag(field, offset, defaultValue) over ([analytic clause])
function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lag(Field<T> field,
int offset,
T defaultValue)
The
lag(field, offset, defaultValue) over ([analytic clause])
function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lastValue(Field<T> field)
The
last_value(field) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lead(Field<T> field)
The
lead(field) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lead(Field<T> field,
int offset)
The
lead(field, offset) over ([analytic clause]) function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lead(Field<T> field,
int offset,
Field<T> defaultValue)
The
lead(field, offset, defaultValue) over ([analytic clause])
function. |
static <T> WindowIgnoreNullsStep<T> |
Factory.lead(Field<T> field,
int offset,
T defaultValue)
The
lead(field, offset, defaultValue) over ([analytic clause])
function. |
Copyright © 2013. All Rights Reserved.