IMPLTYPE - The implementation typepublic interface ISeverityComparable<IMPLTYPE extends ISeverityComparable<IMPLTYPE>> extends Serializable
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEQ(IMPLTYPE aOther)
Check if this object is of the same level (= equal important) than the
passed object.
|
boolean |
isGE(IMPLTYPE aOther)
Check if this object is of equal or higher level (= equally or more
important) than the passed object.
|
boolean |
isGT(IMPLTYPE aOther)
Check if this object is of higher level (= more important) than the passed
object.
|
boolean |
isLE(IMPLTYPE aOther)
Check if this object is of equal or lower level (= equally or less
important) than the passed object.
|
boolean |
isLT(IMPLTYPE aOther)
Check if this object is of lower level (= less important) than the passed
object.
|
default boolean |
isNE(IMPLTYPE aOther)
Check if this object is of a different level (= different importance) than
the passed object.
|
boolean isEQ(@Nonnull IMPLTYPE aOther)
aOther - The object to compare to.true if this object is equally important than the
passed object!default boolean isNE(@Nonnull IMPLTYPE aOther)
aOther - The object to compare to.true if this object is not equally important than the
passed object!boolean isLT(@Nonnull IMPLTYPE aOther)
aOther - The object to compare to.true if this object is less important than the passed
object!boolean isLE(@Nonnull IMPLTYPE aOther)
aOther - The object to compare to.true if this object is equally or less important than
the passed object!boolean isGT(@Nonnull IMPLTYPE aOther)
aOther - The object to compare to.true if this object is more important than the passed
object!Copyright © 2014–2019 Philip Helger. All rights reserved.