Uses of Class
org.deckfour.xes.id.XID
-
Packages that use XID Package Description org.deckfour.xes.extension.std org.deckfour.xes.factory org.deckfour.xes.id org.deckfour.xes.model org.deckfour.xes.model.impl -
-
Uses of XID in org.deckfour.xes.extension.std
Methods in org.deckfour.xes.extension.std that return XID Modifier and Type Method Description XIDXIdentityExtension. extractID(XAttributable element)Retrieves the id of a log data hierarchy element, if set by this extension's id attribute.XIDXMicroExtension. extractParentId(XEvent event)XIDXExtendedEvent. getID()Methods in org.deckfour.xes.extension.std with parameters of type XID Modifier and Type Method Description voidXIdentityExtension. assignID(XAttributable element, XID id)Assigns any log data hierarchy element its id, as defined by this extension's id attribute.voidXMicroExtension. assignParentId(XEvent event, XID parentId) -
Uses of XID in org.deckfour.xes.factory
Methods in org.deckfour.xes.factory with parameters of type XID Modifier and Type Method Description XAttributeIDXFactory. createAttributeID(java.lang.String key, XID value, XExtension extension)Creates a new XES attribute with id type (Factory method).XAttributeIDXFactoryNaiveImpl. createAttributeID(java.lang.String key, XID value, XExtension extension)XEventXFactory. createEvent(XID id, XAttributeMap attributes)Creates a new XES event instance (Factory method).XEventXFactoryNaiveImpl. createEvent(XID id, XAttributeMap attributes) -
Uses of XID in org.deckfour.xes.id
Methods in org.deckfour.xes.id that return XID Modifier and Type Method Description XIDXIDFactory. createId()Creates a new, unique ID.static XIDXID. parse(java.lang.String idString)Parses an XID object from its text representation.static XIDXID. read(java.io.DataInput in)Reads a binary-serialized XID from a data input.static XIDXID. read(java.io.DataInputStream dis)Reads a binary-serialized XID from a data input stream.Methods in org.deckfour.xes.id with parameters of type XID Modifier and Type Method Description intXID. compareTo(XID o)static voidXID. write(XID id, java.io.DataOutput out)Serializes an XID object binarily to a data output stream.static voidXID. write(XID id, java.io.DataOutputStream dos)Serializes an XID object binarily to a data output stream. -
Uses of XID in org.deckfour.xes.model
Methods in org.deckfour.xes.model that return XID Modifier and Type Method Description XIDXEvent. getID()Returns the id of the eventXIDXAttributeID. getValue()Retrieves the ID value of this attribute.Methods in org.deckfour.xes.model with parameters of type XID Modifier and Type Method Description voidXAttributeID. setValue(XID value)Assigns the ID value of this attribute. -
Uses of XID in org.deckfour.xes.model.impl
Methods in org.deckfour.xes.model.impl that return XID Modifier and Type Method Description XIDXEventImpl. getID()XIDXAttributeIDImpl. getValue()Methods in org.deckfour.xes.model.impl with parameters of type XID Modifier and Type Method Description voidXEventImpl. setID(XID id)Sets the ID.voidXAttributeIDImpl. setValue(XID value)Constructors in org.deckfour.xes.model.impl with parameters of type XID Constructor Description XAttributeIDImpl(java.lang.String key, XID value)Creates a new instance.XAttributeIDImpl(java.lang.String key, XID value, XExtension extension)Creates a new instance.XEventImpl(XID id)Creates a new event with a given ID.XEventImpl(XID id, XAttributeMap attributes)Creates a new event with the given id and attributed
-