Package kieker.common.util.signature
Class ClassOperationSignaturePair
java.lang.Object
kieker.common.util.signature.ClassOperationSignaturePair
This class represents a pair containing the classname and the signature of an operation.
- Since:
- 1.5
- Author:
- Andre van Hoorn, Jan Waller
-
Constructor Summary
ConstructorsConstructorDescriptionClassOperationSignaturePair(String fqClassname, Signature signature) Creates a new instance of this class using the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringcreateOperationSignatureString(String fqClassName, Signature signature) Given a fully-qualified class name fqClassName (e.g.,a.b.c.D) and aSignature(e.g., for operationop1with modifierspublicandstatic, the return typeBoolean, and the parameter typesIntegerandLong), the method returns an operation signature string (e.g.,public static Boolean a.b.c.D.op1(Integer, Long)).booleanDelivers the fully qualified class name.This method delivers the package name of the class.Delivers the signature.This method delivers a simplified version of the fully qualified class name.inthashCode()static ClassOperationSignaturePairsplitOperationSignatureStr(String operationSignatureStr) Extracts anClassOperationSignaturePairfrom an operation signature string (e.g.,public static Boolean a.b.c.D.op1(Integer, Long)).static ClassOperationSignaturePairsplitOperationSignatureStr(String operationSignatureStr, boolean javaConstructor) Split up an operation signature string and populate a class operation signature pair.This method assembles an operation signature string from the current fields.toString()Returns a String representation of thisClassOperationSignaturePairusing thecreateOperationSignatureString(String, Signature)method.
-
Constructor Details
-
ClassOperationSignaturePair
Creates a new instance of this class using the given parameters.- Parameters:
fqClassname- The fully qualified name of the class.signature- The signature.
-
-
Method Details
-
getFqClassname
Delivers the fully qualified class name.- Returns:
- the fqClassname
-
getSignature
Delivers the signature.- Returns:
- the signature
-
getSimpleClassname
This method delivers a simplified version of the fully qualified class name. In other words: The string behind the last '.' of the fully qualified name (this is usually just the name of the class and nothing else).- Returns:
- The simple class name.
-
getPackageName
This method delivers the package name of the class. In other words: This method returns everything before the last '.' of the fully qualified name.- Returns:
- The package name.
-
toOperationSignatureString
This method assembles an operation signature string from the current fields.- Returns:
- An operation signature string.
-
splitOperationSignatureStr
Extracts anClassOperationSignaturePairfrom an operation signature string (e.g.,public static Boolean a.b.c.D.op1(Integer, Long)). Modifier list, return type, and parameter list wrapped by parentheses are optional. But note that a return type must be given if one or more modifiers are present.- Parameters:
operationSignatureStr- The signature string.- Returns:
- The
ClassOperationSignaturePairextracted from the given string.
-
splitOperationSignatureStr
public static ClassOperationSignaturePair splitOperationSignatureStr(String operationSignatureStr, boolean javaConstructor) Split up an operation signature string and populate a class operation signature pair.- Parameters:
operationSignatureStr- the signature stringjavaConstructor- if true the string holds a constructor signature- Returns:
- a ClassOperationSignaturePair
-
createOperationSignatureString
Given a fully-qualified class name fqClassName (e.g.,a.b.c.D) and aSignature(e.g., for operationop1with modifierspublicandstatic, the return typeBoolean, and the parameter typesIntegerandLong), the method returns an operation signature string (e.g.,public static Boolean a.b.c.D.op1(Integer, Long)).- Parameters:
fqClassName- The fully qualified class name.signature- The signature string.- Returns:
- An operation signature string as defined by the given parameters.
-
toString
Returns a String representation of thisClassOperationSignaturePairusing thecreateOperationSignatureString(String, Signature)method. -
hashCode
public int hashCode() -
equals
-