Class Bound.Any<T extends Comparable<T>>
- java.lang.Object
- 
- org.opennms.netmgt.flows.classification.internal.decision.Bound<T>
- 
- org.opennms.netmgt.flows.classification.internal.decision.Bound.Any<T>
 
 
- 
- Enclosing class:
- Bound<T extends Comparable<T>>
 
 public static class Bound.Any<T extends Comparable<T>> extends Bound<T> 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class org.opennms.netmgt.flows.classification.internal.decision.BoundBound.Any<T extends Comparable<T>>, Bound.Eq<T extends Comparable<T>>, Bound.Gt<T extends Comparable<T>>, Bound.In<T extends Comparable<T>>, Bound.Lt<T extends Comparable<T>>
 
- 
 - 
Constructor SummaryConstructors Constructor Description Any()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanBeRestrictedBy(T value)Checks if this bound can be restricted by the given value.Bound<T>eq(T value)Restricts this bound such that it includes only the given value.Bound<T>gt(T value)Restricts this bound such that it includes only values that are greater than the given value.booleanincludes(T value)Checks if this bound includes the given value.Bound<T>lt(T value)Restricts this bound such that it includes only values that are less than the given value.booleanoverlaps(T begin, T end)Checks if this bound overlaps with the given range.
 
- 
- 
- 
Method Detail- 
ltpublic Bound<T> lt(T value) Description copied from class:BoundRestricts this bound such that it includes only values that are less than the given value.- Specified by:
- ltin class- Bound<T extends Comparable<T>>
 
 - 
eqpublic Bound<T> eq(T value) Description copied from class:BoundRestricts this bound such that it includes only the given value.- Specified by:
- eqin class- Bound<T extends Comparable<T>>
 
 - 
gtpublic Bound<T> gt(T value) Description copied from class:BoundRestricts this bound such that it includes only values that are greater than the given value.- Specified by:
- gtin class- Bound<T extends Comparable<T>>
 
 - 
includespublic boolean includes(T value) Description copied from class:BoundChecks if this bound includes the given value.- Specified by:
- includesin class- Bound<T extends Comparable<T>>
 
 - 
canBeRestrictedBypublic boolean canBeRestrictedBy(T value) Description copied from class:BoundChecks if this bound can be restricted by the given value.- Specified by:
- canBeRestrictedByin class- Bound<T extends Comparable<T>>
 
 
- 
 
-