Package dev.siroshun.configapi.core.node
Interface ListNode
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a new object to thisListNode
.void
void
addAll
(@NotNull Collection<?> collection) Adds new objects in the givenCollection
to thisListNode
.@NotNull ListNode
addList()
@NotNull ListNode
addList
(int initialCapacity) @NotNull MapNode
addMap()
<T> @NotNull @Unmodifiable List<T>
@NotNull @UnmodifiableView ListNode
asView()
Gets a view of thisListNode
.void
clear()
Clears thisListNode
.boolean
Checks if the specified object is contained in thisListNode
.@NotNull ListNode
copy()
Copies thisListNode
.static @NotNull ListNode
create()
Creates a newListNode
.static @NotNull ListNode
create
(int initialCapacity) Creates a newListNode
.static @NotNull ListNode
create
(@NotNull Collection<?> collection) Creates a newListNode
with values in the givenCollection
.static @NotNull @Unmodifiable ListNode
empty()
Gets aListNode
that is always empty.@NotNull Node<?>
get
(int index) Gets the element at the specified position in thisListNode
.boolean
isEmpty()
Checks if thisListNode
has no element.@NotNull Node<?>
remove
(int index) Removes the element at the specified position in thisListNode
.boolean
Removes an object from thisListNode
.boolean
Removes the elements from thisListNode
that satisfy the given predicate.void
replaceAll
(@NotNull UnaryOperator<Node<?>> operator) Replaces each element in thisListNode
using the givenUnaryOperator
.@NotNull Node<?>
Sets the new element at the specified position in thisListNode
.int
size()
Returns the number of elements in thisListNode
.void
sort
(@NotNull Comparator<? super Node<?>> comparator) Sorts thisListNode
using the givenComparator
.stream()
Creates aStream
from an internal list.value()
Methods inherited from interface dev.siroshun.configapi.core.node.CommentableNode
getComment, getCommentOrNull, hasComment, setComment
Methods inherited from interface dev.siroshun.configapi.core.node.Node
accept, asOptional, hasValue
-
Field Details
-
IMPLEMENTATION_CLASS
An implementationClass
of this interface.
-
-
Method Details
-
create
Creates a newListNode
.- Returns:
- a new
ListNode
-
create
Creates a newListNode
.- Parameters:
initialCapacity
- the initial capacity of the list- Returns:
- a new
ListNode
-
create
Creates a newListNode
with values in the givenCollection
.- Parameters:
collection
- aCollection
to add elements to the newListNode
- Returns:
- a new
ListNode
with values in the givenCollection
-
empty
Gets aListNode
that is always empty.The returning
ListNode
cannot be modified using methods likeadd(Object)
.- Returns:
- a
ListNode
that is always empty
-
value
-
asList
@NotNull <T> @NotNull @Unmodifiable List<T> asList(@NotNull @NotNull Class<? extends T> elementClass) Gets aList
containing elements of the specifiedClass
.The returning
List
is immutable.The list only contain elements such that
Class.isInstance(java.lang.Object)
returnstrue
. Other elements are ignored. -
stream
Creates aStream
from an internal list.- Returns:
- a
Stream
from an internal list
-
add
Adds a new object to thisListNode
.- Parameters:
value
- a new object
-
addAll
Adds new objects in the givenCollection
to thisListNode
.- Parameters:
collection
- aCollection
that includes new objects to add
-
addAll
- Parameters:
listNode
- aListNode
that includes new nodes to add
-
addList
- Returns:
- a created
ListNode
-
addList
- Parameters:
initialCapacity
- the initial capacity of the list- Returns:
- a created
ListNode
-
addMap
- Returns:
- a created
MapNode
-
clear
void clear()Clears thisListNode
. -
contains
Checks if the specified object is contained in thisListNode
.- Parameters:
object
- the object to check- Returns:
true
if the specified object is contained in thisListNode
, otherwisefalse
-
get
Gets the element at the specified position in thisListNode
.- Parameters:
index
- the index of the element to return- Returns:
- the element at the specified position
- Throws:
IndexOutOfBoundsException
- if the index is out of range
-
isEmpty
boolean isEmpty()Checks if thisListNode
has no element.- Returns:
true
if thisListNode
has no element, otherwisefalse
-
remove
Removes the element at the specified position in thisListNode
.- Parameters:
index
- the index of the element to remove- Returns:
- the removed
Node
- Throws:
IndexOutOfBoundsException
- if the index is out of range
-
remove
Removes an object from thisListNode
.- Parameters:
value
- an object to remove from thisListNode
- Returns:
true
if the specified object is removed, otherwisefalse
-
removeIf
Removes the elements from thisListNode
that satisfy the given predicate.- Parameters:
predicate
- a predicate which returnstrue
for elements to be removed- Returns:
true
if thisListNode
is changed, otherwisefalse
-
replaceAll
Replaces each element in thisListNode
using the givenUnaryOperator
.- Parameters:
operator
- aUnaryOperator
that replaces the elements
-
set
Sets the new element at the specified position in thisListNode
.- Parameters:
index
- the index of the element to setobject
- the object to set- Returns:
- the removed
Node
- Throws:
IndexOutOfBoundsException
- if the index is out of range
-
size
int size()Returns the number of elements in thisListNode
.- Returns:
- the number of elements in this
ListNode
-
sort
Sorts thisListNode
using the givenComparator
.- Parameters:
comparator
- theComparator
to use for sorting thisListNode
-
copy
Copies thisListNode
.The elements in this
ListNode
will also be copied usingNode.fromObject(Object)
.- Returns:
- a copied
ListNode
-
asView
Gets a view of thisListNode
.The returning
ListNode
cannot be modified, but thisListNode
can still be modified, so the elements may be changed by other codes using this instance.- Returns:
- a view of this
ListNode
-