Package com.gigaspaces.log
Class CompoundLogEntries
java.lang.Object
com.gigaspaces.log.CompoundLogEntries
- All Implemented Interfaces:
Serializable
Holds a list of
LogEntries. Note, the list might include
null values, so use getSafeEntries() in order to get a list that includes
all non null values.- Author:
- kimchy
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCompoundLogEntries(LogEntries[] entries) Constructs a new instance with an array ofLogEntries(some values can be null within the array). -
Method Summary
Modifier and TypeMethodDescriptionReturns theLogEntriesarray.Returns aLogEntriesarray with no null values.booleanisEmpty()Returnstrueif there are no log entries.
-
Constructor Details
-
CompoundLogEntries
Constructs a new instance with an array ofLogEntries(some values can be null within the array).
-
-
Method Details
-
getEntries
Returns theLogEntriesarray.Note, some values of the array might be null. Use
getSafeEntries()in order to get all the non null log entries. -
getSafeEntries
Returns aLogEntriesarray with no null values. -
isEmpty
public boolean isEmpty()Returnstrueif there are no log entries.
-