Class PluginDescriptorIDImpl
- java.lang.Object
-
- org.processmining.framework.plugin.impl.PluginDescriptorIDImpl
-
- All Implemented Interfaces:
java.lang.Comparable<PluginDescriptorID>
,PluginDescriptorID
public class PluginDescriptorIDImpl extends java.lang.Object implements PluginDescriptorID
-
-
Constructor Summary
Constructors Constructor Description PluginDescriptorIDImpl(java.lang.Class<?> pluginClass)
PluginDescriptorIDImpl(java.lang.reflect.Method pluginMethod)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(PluginDescriptorID o)
boolean
equals(java.lang.Object o)
ProvidedObjectIDs are used in Collections, so this method has to be implemented in all its subclasses.int
hashCode()
ProvidedObjectIDs are used in HashMaps, so this method has to be implemented in all its subclasses.java.lang.String
toString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
Description copied from interface:PluginDescriptorID
ProvidedObjectIDs are used in HashMaps, so this method has to be implemented in all its subclasses.- Specified by:
hashCode
in interfacePluginDescriptorID
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
Description copied from interface:PluginDescriptorID
ProvidedObjectIDs are used in Collections, so this method has to be implemented in all its subclasses.- Specified by:
equals
in interfacePluginDescriptorID
- Overrides:
equals
in classjava.lang.Object
-
compareTo
public int compareTo(PluginDescriptorID o)
- Specified by:
compareTo
in interfacejava.lang.Comparable<PluginDescriptorID>
-
-