Klasse OffsetDateTimeRange
java.lang.Object
org.jooq.postgres.extensions.types.OffsetDateTimeRange
- Alle implementierten Schnittstellen:
Serializable,Range<OffsetDateTime>
A data type representing the PostgreSQL
tstzrange type.- Autor:
- Lukas Eder
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleaninthashCode()booleanisEmpty()In PostgreSQL, a [x,x) range is considered "empty".final OffsetDateTimelower()The lower bound of the range.final booleanWhether theRange.lower()bound of the range is included in the range.static final OffsetDateTimeRangeoffsetDateTimeRange(OffsetDateTime lower, boolean lowerIncluding, OffsetDateTime upper, boolean upperIncluding) Create a newOffsetDateTimeRange.static final OffsetDateTimeRangeoffsetDateTimeRange(OffsetDateTime lower, OffsetDateTime upper) Create a newOffsetDateTimeRangewith a inclusive lower bound and an exclusive upper bound.toString()final OffsetDateTimeupper()The upper bound of the range.final booleanWhether theRange.upper()bound of the range is included in the range.
-
Methodendetails
-
offsetDateTimeRange
public static final OffsetDateTimeRange offsetDateTimeRange(OffsetDateTime lower, OffsetDateTime upper) Create a newOffsetDateTimeRangewith a inclusive lower bound and an exclusive upper bound. -
offsetDateTimeRange
public static final OffsetDateTimeRange offsetDateTimeRange(OffsetDateTime lower, boolean lowerIncluding, OffsetDateTime upper, boolean upperIncluding) Create a newOffsetDateTimeRange. -
isEmpty
public boolean isEmpty()Beschreibung aus Schnittstelle kopiert:RangeIn PostgreSQL, a [x,x) range is considered "empty". -
lower
Beschreibung aus Schnittstelle kopiert:RangeThe lower bound of the range. -
lowerIncluding
public final boolean lowerIncluding()Beschreibung aus Schnittstelle kopiert:RangeWhether theRange.lower()bound of the range is included in the range.- Angegeben von:
lowerIncludingin SchnittstelleRange<T>
-
upper
Beschreibung aus Schnittstelle kopiert:RangeThe upper bound of the range. -
upperIncluding
public final boolean upperIncluding()Beschreibung aus Schnittstelle kopiert:RangeWhether theRange.upper()bound of the range is included in the range.- Angegeben von:
upperIncludingin SchnittstelleRange<T>
-
hashCode
public int hashCode() -
equals
-
toString
-