Package net.kyori.adventure.pointer
Interface Pointers
- All Superinterfaces:
Buildable<Pointers,
Pointers.Builder>
A collection of
pointers
.- Since:
- 4.8.0
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull Pointers.Builder
builder()
Gets a new pointers builder.static @NotNull Pointers
empty()
Gets an empty pointers collection.<T> @NotNull Optional<T>
Gets the value ofpointer
.default <T> T
getOrDefault
(@NotNull Pointer<T> pointer, T defaultValue) Gets the value ofpointer
.default <T> @UnknownNullability T
getOrDefaultFrom
(@NotNull Pointer<T> pointer, @NotNull Supplier<? extends T> defaultValue) Gets the value ofpointer
.<T> boolean
Checks if a given pointer is supported.
-
Method Details
-
empty
Gets an empty pointers collection.- Returns:
- the pointers
- Since:
- 4.8.0
-
builder
Gets a new pointers builder.- Returns:
- the builder
- Since:
- 4.8.0
- See Also:
-
get
Gets the value ofpointer
.- Type Parameters:
T
- the type- Parameters:
pointer
- the pointer- Returns:
- the value
- Since:
- 4.8.0
-
getOrDefault
@Contract("_, null -> _; _, !null -> !null") @Nullable default <T> T getOrDefault(@NotNull @NotNull Pointer<T> pointer, @Nullable T defaultValue) Gets the value ofpointer
.If a value for
pointer
is unable to be provided,defaultValue
will be returned.- Type Parameters:
T
- the type- Parameters:
pointer
- the pointerdefaultValue
- the default value- Returns:
- the value
- Since:
- 4.8.0
-
getOrDefaultFrom
default <T> @UnknownNullability T getOrDefaultFrom(@NotNull @NotNull Pointer<T> pointer, @NotNull @NotNull Supplier<? extends T> defaultValue) Gets the value ofpointer
.If a value for
pointer
is unable to be provided, the value supplied bydefaultValue
will be returned.- Type Parameters:
T
- the type- Parameters:
pointer
- the pointerdefaultValue
- the default value supplier- Returns:
- the value
- Since:
- 4.8.0
-
supports
Checks if a given pointer is supported.This will return
true
when a mapping for the provided pointer exists, even if the value for the pointer isnull
.- Type Parameters:
T
- the type- Parameters:
pointer
- the pointer- Returns:
- if the pointer is supported
- Since:
- 4.8.0
-