java.lang.Object
org.jooq.postgres.extensions.types.LongRange
- Alle implementierten Schnittstellen:
Serializable,Range<Long>
A data type representing the PostgreSQL
int8range type.- Autor:
- Lukas Eder
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleaninthashCode()booleanisEmpty()In PostgreSQL, a [x,x) range is considered "empty".static final LongRangeCreate a newLongRange.static final LongRangeCreate a newLongRangewith a inclusive lower bound and an exclusive upper bound.final Longlower()The lower bound of the range.final booleanWhether theRange.lower()bound of the range is included in the range.toString()final Longupper()The upper bound of the range.final booleanWhether theRange.upper()bound of the range is included in the range.
-
Methodendetails
-
longRange
Create a newLongRangewith a inclusive lower bound and an exclusive upper bound. -
longRange
public static final LongRange longRange(Long lower, boolean lowerIncluding, Long upper, boolean upperIncluding) Create a newLongRange. -
isEmpty
public boolean isEmpty()Beschreibung aus Schnittstelle kopiert:RangeIn PostgreSQL, a [x,x) range is considered "empty". -
hashCode
public int hashCode() -
equals
-
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>
-
toString
-