Package org.java.plugin.registry
Enum Class MatchingRule
- All Implemented Interfaces:
Serializable
,Comparable<MatchingRule>
,Constable
Version identifier matching modes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionVersion identifier matching rule constant.Version identifier matching rule constant.Version identifier matching rule constant.Version identifier matching rule constant. -
Method Summary
Modifier and TypeMethodDescriptionstatic MatchingRule
Converts plug-in manifest string code to matching rule constant value.abstract String
toCode()
static MatchingRule
Returns the enum constant of this class with the specified name.static MatchingRule[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUAL
Version identifier matching rule constant. -
EQUIVALENT
Version identifier matching rule constant. -
COMPATIBLE
Version identifier matching rule constant. -
GREATER_OR_EQUAL
Version identifier matching rule constant.
-
-
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
-
toCode
- Returns:
- constant code to be used in plug-in manifest
-
fromCode
Converts plug-in manifest string code to matching rule constant value.- Parameters:
code
- code from plug-in manifest- Returns:
- matching rule constant value
-