Package burp.api.montoya.persistence
Interface PersistedList<T>
- All Superinterfaces:
Collection<T>
,Iterable<T>
,List<T>
,SequencedCollection<T>
List that has been persisted in the project.
The methods of this list operate on the underlying persisted data.
-
Method Summary
Modifier and TypeMethodDescriptionstatic PersistedList
<Boolean> Create a new instance ofPersistedList
that contains instances ofBoolean
.static PersistedList
<ByteArray> Create a new instance ofPersistedList
that contains instances ofByteArray
.static PersistedList
<HttpRequest> Create a new instance ofPersistedList
that contains instances ofHttpRequest
.static PersistedList
<HttpRequestResponse> Create a new instance ofPersistedList
that contains instances ofHttpRequestResponse
.static PersistedList
<HttpResponse> Create a new instance ofPersistedList
that contains instances ofHttpResponse
.static PersistedList
<Integer> Create a new instance ofPersistedList
that contains instances ofInteger
.static PersistedList
<Long> Create a new instance ofPersistedList
that contains instances ofLong
.static PersistedList
<Short> Create a new instance ofPersistedList
that contains instances ofShort
.static PersistedList
<String> Create a new instance ofPersistedList
that contains instances ofString
.Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
add, add, addAll, addAll, addFirst, addLast, clear, contains, containsAll, equals, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, set, size, sort, spliterator, subList, toArray, toArray
-
Method Details
-
persistedBooleanList
Create a new instance ofPersistedList
that contains instances ofBoolean
.- Returns:
- A new
PersistedList
instance.
-
persistedShortList
Create a new instance ofPersistedList
that contains instances ofShort
.- Returns:
- A new
PersistedList
instance.
-
persistedIntegerList
Create a new instance ofPersistedList
that contains instances ofInteger
.- Returns:
- A new
PersistedList
instance.
-
persistedLongList
Create a new instance ofPersistedList
that contains instances ofLong
.- Returns:
- A new
PersistedList
instance.
-
persistedStringList
Create a new instance ofPersistedList
that contains instances ofString
.- Returns:
- A new
PersistedList
instance.
-
persistedByteArrayList
Create a new instance ofPersistedList
that contains instances ofByteArray
.- Returns:
- A new
PersistedList
instance.
-
persistedHttpRequestList
Create a new instance ofPersistedList
that contains instances ofHttpRequest
.- Returns:
- A new
PersistedList
instance.
-
persistedHttpResponseList
Create a new instance ofPersistedList
that contains instances ofHttpResponse
.- Returns:
- A new
PersistedList
instance.
-
persistedHttpRequestResponseList
Create a new instance ofPersistedList
that contains instances ofHttpRequestResponse
.- Returns:
- A new
PersistedList
instance.
-