Module com.github.rvesse.airline
Annotation Interface LongRange
Annotation that marks values as being restricted to a given long integer range
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionlong
Maximum valueboolean
Whether the maximum value is inclusivelong
Minimum valueboolean
Whether the minimum value is inclusive
-
Element Details
-
min
long minMinimum value- Returns:
- Minimum value
- Default:
-9223372036854775808L
-
max
long maxMaximum value- Returns:
- Maximum value
- Default:
9223372036854775807L
-
minInclusive
boolean minInclusiveWhether the minimum value is inclusive- Returns:
- True if inclusive, false if exclusive
- Default:
true
-
maxInclusive
boolean maxInclusiveWhether the maximum value is inclusive- Returns:
- True if inclusive, false if exclusive
- Default:
true
-