Package org.tudalgo.algoutils.reflect
Class IdentifierMatcher
java.lang.Object
org.tudalgo.algoutils.reflect.IdentifierMatcher
- Direct Known Subclasses:
AttributeMatcher,ParameterMatcher
Deprecated, for removal: This API element is subject to removal in a future version.
An identifier Matcher.
* This class is deprecated and will be removed in a future release.
* Use the new API located in the
org.tudalgo.algoutils.tutor.general.reflections package instead.-
Field Summary
FieldsModifier and TypeFieldDescriptionDeprecated, for removal: This API element is subject to removal in a future version.The name to match.Deprecated, for removal: This API element is subject to removal in a future version.The package name.doubleDeprecated, for removal: This API element is subject to removal in a future version.The minimum required similarity. -
Constructor Summary
ConstructorsConstructorDescriptionIdentifierMatcher(String identifierName, double similarity) Deprecated, for removal: This API element is subject to removal in a future version.Constructs and initializes an identifier matcher to match the specified identifier.IdentifierMatcher(String identifierName, String packageName, double similarity) Deprecated, for removal: This API element is subject to removal in a future version.Constructs and initializes an identifier matcher to match the specified identifier. -
Method Summary
-
Field Details
-
identifierName
Deprecated, for removal: This API element is subject to removal in a future version.The name to match. -
packageName
Deprecated, for removal: This API element is subject to removal in a future version.The package name. -
similarity
public double similarityDeprecated, for removal: This API element is subject to removal in a future version.The minimum required similarity.
-
-
Constructor Details
-
IdentifierMatcher
Deprecated, for removal: This API element is subject to removal in a future version.Constructs and initializes an identifier matcher to match the specified identifier.- Parameters:
identifierName- the identifier to matchpackageName- the package namesimilarity- the minimum required similarity
-
IdentifierMatcher
Deprecated, for removal: This API element is subject to removal in a future version.Constructs and initializes an identifier matcher to match the specified identifier.- Parameters:
identifierName- the identifier to matchsimilarity- the minimum required similarity
-