| Package | Description |
|---|---|
| org.jsimpledb.util |
General utility classes used with JSimpleDB.
|
| Modifier and Type | Method and Description |
|---|---|
BoundType |
Bounds.getLowerBoundType()
Get the type of the lower bound that corresponds to
Bounds.getLowerBound(). |
BoundType |
Bounds.getUpperBoundType()
Get the type of the upper bound that corresponds to
Bounds.getUpperBound(). |
static BoundType |
BoundType.of(boolean inclusive)
|
static BoundType |
BoundType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundType[] |
BoundType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Bounds<T> |
Bounds.withLowerBound(T newLowerBound,
BoundType newLowerBoundType)
Create an instance like this instance but with a different lower bound.
|
Bounds<T> |
Bounds.withUpperBound(T newUpperBound,
BoundType newUpperBoundType)
Create an instance like this instance but with a different upper bound.
|
| Constructor and Description |
|---|
Bounds(T bound,
BoundType boundType,
boolean upper)
Create a one-sided bound.
|
Bounds(T lowerBound,
BoundType lowerBoundType,
T upperBound,
BoundType upperBoundType)
Primary constructor.
|
Copyright © 2016. All rights reserved.