We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TagAdapter
@NullMarked
1 parent 4c1aa49 commit 3ec29f9Copy full SHA for 3ec29f9
nbt/src/main/java/core/nbt/serialization/TagAdapter.java
@@ -1,10 +1,13 @@
1
package core.nbt.serialization;
2
3
+import org.jspecify.annotations.NullMarked;
4
+
5
/**
6
* Combines functionality of {@link TagDeserializer} and {@link TagSerializer}
7
* for handling both serialization and deserialization of the specified type.
8
*
9
* @param <T> the type of objects handled by this adapter
10
*/
11
+@NullMarked
12
public interface TagAdapter<T> extends TagDeserializer<T>, TagSerializer<T> {
13
}
0 commit comments