クラスの使用
org.springframework.data.domain.Range.Bound
Range.Bound を使用するパッケージ
org.springframework.data.domain 内の Range.Bound 使用
Range.Bound を返す org.springframework.data.domain のメソッド修飾子と型メソッド説明static Range.Bound<DoubleSE> Range.Bound.exclusive(double value) valueを除く境界を作成します。static Range.Bound<FloatSE> Range.Bound.exclusive(float value) valueを除く境界を作成します。static Range.Bound<IntegerSE> Range.Bound.exclusive(int value) valueを除く境界を作成します。static Range.Bound<LongSE> Range.Bound.exclusive(long value) valueを除く境界を作成します。static <T> Range.Bound<T> Range.Bound.exclusive(T value) valueを除く境界を作成します。Range.getLowerBound()Range.getUpperBound()static Range.Bound<DoubleSE> Range.Bound.inclusive(double value) valueを含む境界を作成します。static Range.Bound<FloatSE> Range.Bound.inclusive(float value) valueを含む境界を作成します。static Range.Bound<IntegerSE> Range.Bound.inclusive(int value) valueを含む境界を作成します。static Range.Bound<LongSE> Range.Bound.inclusive(long value) valueを含む境界を作成します。static <T> Range.Bound<T> Range.Bound.inclusive(T value) valueを含む境界を作成します。<R> Range.Bound<R> Range.Bound.map(FunctionSE<? super T, ? extends R> mapper) マッピングFunctionSE を境界値に適用します。static <T> Range.Bound<T> Range.Bound.unbounded()無制限のRange.Boundを作成します。型 Range.Bound のパラメーターを持つ org.springframework.data.domain のメソッド修飾子と型メソッド説明static <T> Range.RangeBuilder<T> Range.from(Range.Bound<T> lower) 下側のRange.Boundを指定してRange.RangeBuilderを作成します。static <T> Range<T> Range.leftUnbounded(Range.Bound<T> to) 指定された右境界で左無制限のRange(左境界がRange.Bound.unbounded()に設定)を作成します。static <T> Range<T> Range.of(Range.Bound<T> lowerBound, Range.Bound<T> upperBound) 指定された下限と上限を使用して新しいRangeを作成します。static <T> Range<T> Range.rightUnbounded(Range.Bound<T> from) 指定された左境界を使用して、右無制限のRange(右境界をRange.Bound.unbounded()に設定)を作成します。Range.RangeBuilder.to(Range.Bound<T> upper) 上位のRange.Boundを指定してRangeを作成します。