Modifier and Type | Method and Description |
---|---|
static CountableValueRange<BigDecimal> |
ValueRangeFactory.createBigDecimalValueRange(BigDecimal from,
BigDecimal to)
Build a
CountableValueRange of all BigDecimal values (of a specific scale) between 2 bounds. |
static CountableValueRange<BigDecimal> |
ValueRangeFactory.createBigDecimalValueRange(BigDecimal from,
BigDecimal to,
BigDecimal incrementUnit)
Build a
CountableValueRange of a subset of BigDecimal values (of a specific scale) between 2 bounds. |
static CountableValueRange<BigInteger> |
ValueRangeFactory.createBigIntegerValueRange(BigInteger from,
BigInteger to)
Build a
CountableValueRange of all BigInteger values between 2 bounds. |
static CountableValueRange<BigInteger> |
ValueRangeFactory.createBigIntegerValueRange(BigInteger from,
BigInteger to,
BigInteger incrementUnit)
Build a
CountableValueRange of a subset of BigInteger values between 2 bounds. |
static CountableValueRange<Boolean> |
ValueRangeFactory.createBooleanValueRange()
Build a
CountableValueRange of both boolean values. |
static CountableValueRange<Integer> |
ValueRangeFactory.createIntValueRange(int from,
int to)
Build a
CountableValueRange of all int values between 2 bounds. |
static CountableValueRange<Integer> |
ValueRangeFactory.createIntValueRange(int from,
int to,
int incrementUnit)
Build a
CountableValueRange of a subset of int values between 2 bounds. |
static CountableValueRange<LocalDateTime> |
ValueRangeFactory.createLocalDateTimeValueRange(LocalDateTime from,
LocalDateTime to,
long incrementUnitAmount,
TemporalUnit incrementUnitType)
Build a
CountableValueRange of a subset of LocalDateTime values between 2 bounds. |
static CountableValueRange<LocalDate> |
ValueRangeFactory.createLocalDateValueRange(LocalDate from,
LocalDate to,
long incrementUnitAmount,
TemporalUnit incrementUnitType)
Build a
CountableValueRange of a subset of LocalDate values between 2 bounds. |
static CountableValueRange<LocalTime> |
ValueRangeFactory.createLocalTimeValueRange(LocalTime from,
LocalTime to,
long incrementUnitAmount,
TemporalUnit incrementUnitType)
Build a
CountableValueRange of a subset of LocalTime values between 2 bounds. |
static CountableValueRange<Long> |
ValueRangeFactory.createLongValueRange(long from,
long to)
Build a
CountableValueRange of all long values between 2 bounds. |
static CountableValueRange<Long> |
ValueRangeFactory.createLongValueRange(long from,
long to,
long incrementUnit)
Build a
CountableValueRange of a subset of long values between 2 bounds. |
static <Temporal_ extends Temporal & Comparable<? super Temporal_>> |
ValueRangeFactory.createTemporalValueRange(Temporal_ from,
Temporal_ to,
long incrementUnitAmount,
TemporalUnit incrementUnitType)
Build a
CountableValueRange of a subset of Temporal values (such as LocalDate or LocalDateTime ) between 2 bounds. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCountableValueRange<T>
Abstract superclass for
CountableValueRange (and therefore ValueRange ). |
Modifier and Type | Class and Description |
---|---|
class |
BigDecimalValueRange |
Modifier and Type | Class and Description |
---|---|
class |
BigIntegerValueRange |
Modifier and Type | Class and Description |
---|---|
class |
ListValueRange<T> |
Modifier and Type | Class and Description |
---|---|
class |
CompositeCountableValueRange<T> |
class |
EmptyValueRange<T> |
class |
NullableCountableValueRange<T> |
Constructor and Description |
---|
NullableCountableValueRange(CountableValueRange<T> childValueRange) |
Constructor and Description |
---|
CompositeCountableValueRange(List<? extends CountableValueRange<T>> childValueRangeList) |
Modifier and Type | Class and Description |
---|---|
class |
BooleanValueRange |
Modifier and Type | Class and Description |
---|---|
class |
IntValueRange |
Modifier and Type | Class and Description |
---|---|
class |
LongValueRange |
Modifier and Type | Class and Description |
---|---|
class |
TemporalValueRange<Temporal_ extends Temporal & Comparable<? super Temporal_>> |
Copyright © 2006–2019 JBoss by Red Hat. All rights reserved.