Uses of Interface
org.deckfour.xes.model.XLog

Packages that use XLog
org.deckfour.xes.classification   
org.deckfour.xes.extension.std   
org.deckfour.xes.factory   
org.deckfour.xes.in   
org.deckfour.xes.info   
org.deckfour.xes.info.impl   
org.deckfour.xes.model.impl   
org.deckfour.xes.out   
 

Uses of XLog in org.deckfour.xes.classification
 

Methods in org.deckfour.xes.classification with parameters of type XLog
static XEventClasses XEventClasses.deriveEventClasses(XEventClassifier classifier, XLog log)
          Creates a new set of event classes, factory method.
 void XEventClasses.register(XLog log)
          Registers a log with this set of event classes.
 

Uses of XLog in org.deckfour.xes.extension.std
 

Methods in org.deckfour.xes.extension.std with parameters of type XLog
 void XLifecycleExtension.assignModel(XLog log, String model)
          Assigns a value for the lifecycle model identifier to a given log.
 String XLifecycleExtension.extractModel(XLog log)
          Extracts the lifecycle model identifier from a given log.
 boolean XLifecycleExtension.usesStandardModel(XLog log)
          Checks, whether a given log uses the standard model for lifecycle transitions.
 

Uses of XLog in org.deckfour.xes.factory
 

Methods in org.deckfour.xes.factory that return XLog
 XLog XFactory.createLog()
          Creates a new XES log instance (Factory method).
 XLog XFactoryBufferedImpl.createLog()
           
 XLog XFactoryNaiveImpl.createLog()
           
 XLog XFactory.createLog(XAttributeMap attributes)
          Creates a new XES log instance (Factory method).
 XLog XFactoryNaiveImpl.createLog(XAttributeMap attributes)
           
 

Uses of XLog in org.deckfour.xes.in
 

Fields in org.deckfour.xes.in declared as XLog
protected  XLog XMxmlParser.MxmlHandler.currentProcess
           
protected  XLog XesXmlParser.XesXmlHandler.log
          Buffer log.
 

Fields in org.deckfour.xes.in with type parameters of type XLog
protected  ArrayList<XLog> XMxmlParser.MxmlHandler.logs
           
 

Methods in org.deckfour.xes.in that return XLog
 XLog XesXmlParser.XesXmlHandler.getLog()
          Retrieves the parsed log.
 

Methods in org.deckfour.xes.in that return types with arguments of type XLog
 List<XLog> XMxmlParser.MxmlHandler.getLogs()
           
 List<XLog> XParser.parse(File file)
          Parses the given file, and returns the XLog instances extracted.
 Collection<XLog> XUniversalParser.parse(File file)
          Attempts to parse a collection of XES models from the given file, using all available parsers.
 List<XLog> XMxmlGZIPParser.parse(InputStream is)
           
 List<XLog> XMxmlParser.parse(InputStream is)
          Parses a set of logs from the given input stream, which is supposed to deliver an MXML serialization.
abstract  List<XLog> XParser.parse(InputStream is)
          Parses the given input stream, and returns the XLog instances extracted.
 List<XLog> XesXmlGZIPParser.parse(InputStream is)
           
 List<XLog> XesXmlParser.parse(InputStream is)
          Parses a log from the given input stream, which is supposed to deliver an XES log in XML representation.
 

Uses of XLog in org.deckfour.xes.info
 

Methods in org.deckfour.xes.info that return XLog
 XLog XLogInfo.getLog()
          Retrieves the log used for this summary.
 

Methods in org.deckfour.xes.info with parameters of type XLog
static XLogInfo XLogInfoFactory.createLogInfo(XLog log)
          Creates a new log info with the standard event classifier.
static XLogInfo XLogInfoFactory.createLogInfo(XLog log, XEventClassifier classifier)
          Creates a new log info summary with a custom event classifier.
 

Uses of XLog in org.deckfour.xes.info.impl
 

Fields in org.deckfour.xes.info.impl declared as XLog
protected  XLog XLogInfoImpl.log
          The event log which is summarized.
 

Methods in org.deckfour.xes.info.impl that return XLog
 XLog XLogInfoImpl.getLog()
           
 

Methods in org.deckfour.xes.info.impl with parameters of type XLog
static XLogInfo XLogInfoImpl.create(XLog log)
          Creates a new log info summary with the standard event classifier.
static XLogInfo XLogInfoImpl.create(XLog log, XEventClassifier defaultClassifier)
          Creates a new log info summary with a custom event classifier.
static XLogInfo XLogInfoImpl.create(XLog log, XEventClassifier defaultClassifier, Collection<XEventClassifier> classifiers)
          Creates a new log info summary with a collection of custom event classifiers.
 

Constructors in org.deckfour.xes.info.impl with parameters of type XLog
XLogInfoImpl(XLog log, XEventClassifier defaultClassifier, Collection<XEventClassifier> classifiers)
          Creates a new log summary.
 

Uses of XLog in org.deckfour.xes.model.impl
 

Classes in org.deckfour.xes.model.impl that implement XLog
 class XLogImpl
          Implementation for the XLog interface.
 

Uses of XLog in org.deckfour.xes.out
 

Methods in org.deckfour.xes.out with parameters of type XLog
 void XMxmlGZIPSerializer.serialize(XLog log, OutputStream out)
           
 void XMxmlSerializer.serialize(XLog log, OutputStream out)
           
 void XSerializer.serialize(XLog log, OutputStream out)
          Serializes a given log to the given output stream.
 void XesXmlGZIPSerializer.serialize(XLog log, OutputStream out)
           
 void XesXmlSerializer.serialize(XLog log, OutputStream out)