Package org.eclipse.pde.core.plugin
Enum Class VersionMatchRule
- All Implemented Interfaces:
Serializable
,Comparable<VersionMatchRule>
,Constable
Defines the rules that are used to control when two compared versions match.
- Since:
- 3.19
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA rule that matches if a version is compatible to a reference, which is the case if that version has the samemajor
component and apart from that is greater than or equal to the reference.A rule that matches if a version is greater than or equal to a reference.A rule that matches if a version is perfectlyequal
to a reference. -
Method Summary
Modifier and TypeMethodDescriptionabstract boolean
abstract VersionRange
toString()
static VersionMatchRule
Returns the enum constant of this class with the specified name.static VersionMatchRule[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PERFECT
A rule that matches if a version is perfectlyequal
to a reference. -
EQUIVALENT
-
COMPATIBLE
A rule that matches if a version is compatible to a reference, which is the case if that version has the samemajor
component and apart from that is greater than or equal to the reference. -
GREATER_OR_EQUAL
A rule that matches if a version is greater than or equal to a reference.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
rangeFor
-
matches
-
toString
- Overrides:
toString
in classEnum<VersionMatchRule>
-