Uses of Class
com.jalios.jstore.LogEntry
-
Packages that use LogEntry Package Description com.jalios.jstore Contains JStore core classes. -
-
Uses of LogEntry in com.jalios.jstore
Subclasses of LogEntry in com.jalios.jstore Modifier and Type Class Description class
InnerLogEntry
This class represents a inner Store operation.class
StorableLogEntry
This abstract class represents a Store operation on a Storable object.Methods in com.jalios.jstore that return LogEntry Modifier and Type Method Description LogEntry
LogManagerSyncHandler. getGreatestCommonLogEntry()
LogEntry
SyncManager. getLastSync()
Methods in com.jalios.jstore that return types with arguments of type LogEntry Modifier and Type Method Description java.util.ArrayList<LogEntry>
LoadReport. getClassErrorList()
Get the value of classErrorList.java.util.ArrayList<LogEntry>
LoadReport. getCreateErrorList()
Get the value of createErrorList.java.util.ArrayList<LogEntry>
LoadReport. getJavaErrorList()
Get the value of javaErrorList.java.util.ArrayList<LogEntry>
LoadReport. getMutationErrorList()
Get the value of mutationErrorList.java.util.ArrayList<LogEntry>
LoadReport. getStampErrorList()
Get the value of stampErrorList.Methods in com.jalios.jstore with parameters of type LogEntry Modifier and Type Method Description void
LoadReport. addClassError(LogEntry entry)
Add a class errorvoid
LoadReport. addCreateError(LogEntry entry)
Add a create errorvoid
LoadReport. addJavaError(LogEntry entry)
Add a java errorvoid
LoadReport. addMutationError(LogEntry entry)
Add a mutation errorvoid
LoadReport. addStampError(LogEntry entry)
Add a stamp errorint
StampTable. compareLogEntry(LogEntry logEntry)
Compares the given stamp of the logEntry with the ones in the table.int
LogEntry. compareTo(LogEntry logEntry)
void
LogManagerHandler. handleLogEntryException(LogEntry logEntry)
This method is called when an exception is caught while processing a logEntryvoid
LogManagerLoadHandler. handleLogEntryException(LogEntry logEntry)
This method is called when an exception is caught while processing the entryvoid
LogManagerDeltaHandler. processAnyLogEntry(LogEntry logEntry)
void
Store. processLogEntry(LogEntry logEntry)
void
LogManager. replaceSuffix(java.util.TreeSet<StorableLogEntry> newSuffix, LogEntry startLogEntry, boolean includeStart, boolean useIndex)
Replace the existing suffix of the store (starting at startLogEntry) with a new one represented by newSuffix.void
Store. replaceSuffix(java.util.TreeSet<StorableLogEntry> newSuffix, LogEntry startLogEntry, boolean includeStart)
Method parameters in com.jalios.jstore with type arguments of type LogEntry Modifier and Type Method Description void
Store. appendAndProcessSuffix(java.util.List<? extends LogEntry> logEntryList)
Appends the given LogEntries in the store.xml file and process each of them.Constructors in com.jalios.jstore with parameters of type LogEntry Constructor Description LogEntry(LogEntry entry)
Creates a new LogEntry by cloning
-