MCPcopy Create free account
hub / github.com/Hypejet/Jet / Writer

Interface Writer

server/src/main/java/net/hypejet/jet/server/util/codec/Writer.java:12–22  ·  view source on GitHub ↗

Represents a function, which converts a value to another value. @param a type of values to convert @param a type of converted values @since 1.0

Source from the content-addressed store, hash-verified

10 * @since 1.0
11 */
12@FunctionalInterface
13public interface Writer<R, W> {
14 /**
15 * Converts a value.
16 *
17 * @param value a value to convert
18 * @return the converted value
19 * @since 1.0
20 */
21 @NonNull W write(@NonNull R value);
22}

Callers 7

createFaviconMethod · 0.65
testMethod · 0.65
writeMethod · 0.65
writeOptionalMethod · 0.65
writeOptionalMethod · 0.65
compressMethod · 0.65
decompressMethod · 0.65

Implementers 15

BinaryTagHolderTypeAdapterdata/json/src/main/java/net/hypejet/je
KeyTypeAdapterdata/json/src/main/java/net/hypejet/je
ImmutableIntArrayTypeAdapterdata/json/src/main/java/net/hypejet/je
RegistryEntryTypeAdapterdata/json/src/main/java/net/hypejet/je
ItemTypeAdapterdata/json/src/main/java/net/hypejet/je
SoundEventTypeAdapterdata/json/src/main/java/net/hypejet/je
BlockEntityTypeTypeAdapterdata/json/src/main/java/net/hypejet/je
BlockStateTypeAdapterdata/json/src/main/java/net/hypejet/je
BlockTypeAdapterdata/json/src/main/java/net/hypejet/je
GameEventTypeAdapterdata/json/src/main/java/net/hypejet/je
EntityTypeTypeAdapterdata/json/src/main/java/net/hypejet/je
KnownPackTypeAdapterdata/json/src/main/java/net/hypejet/je

Calls

no outgoing calls

Tested by

no test coverage detected