Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Hypejet/Jet
/ functions
Functions
1,964 in github.com/Hypejet/Jet
⨍
Functions
1,964
◇
Types & classes
798
↓ 3 callers
Method
maximumPlayers
Gets a maximum amount of players, which can be on the server at once. <p>Note that this value by default is used only for server list pinging.</p> @
api/src/main/java/net/hypejet/jet/configuration/ServerConfiguration.java:31
↓ 3 callers
Method
packetClass
Gets a class of the client packet that this handler handles. @return the class @since 1.0
server/src/main/java/net/hypejet/jet/server/network/packet/handler/ClientPacketHandler.java:36
↓ 3 callers
Method
pausePacketReading
Blocks a thread responsible for decoding and reading packets until {@link #resumePacketReading()} is called. @throws IllegalStateException if the cal
server/src/main/java/net/hypejet/jet/server/network/packet/reader/ClientPacketReader.java:84
↓ 3 callers
Method
playerList
Gets a {@linkplain PlayerList player list} of the server. @return the player list @since 1.0
server/src/main/java/net/hypejet/jet/server/JetMinecraftServer.java:174
↓ 3 callers
Method
port
Gets a port that the server should bind to. @return the port @since 1.0
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:156
↓ 3 callers
Method
readBytes
Reads bytes from {@linkplain ByteBuf a byte buf}. @param buf the byte buf @param length an amount of bytes to read @return the bytes @since 1.0
server/src/main/java/net/hypejet/jet/server/util/NetworkUtil.java:38
↓ 3 callers
Method
reducedDebugInfo
Gets whether information displayed on the debug screen of clients should be reduced. @return {@code true} if the information should be reduced, {@cod
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:254
↓ 3 callers
Method
registries
Gets a {@linkplain Collection collection} of all registered {@linkplain JetMinecraftRegistry registries}. @return the collection @since 1.0
server/src/main/java/net/hypejet/jet/server/registry/JetRegistryManager.java:263
↓ 3 callers
Method
registryManager
Gets {@linkplain RegistryManager a registry manager} of the server. @return the registry manager @since 1.0
api/src/main/java/net/hypejet/jet/MinecraftServer.java:91
↓ 3 callers
Method
resourcePackHandler
Gets {@linkplain ResourcePackHandler a resource pack handler} that should be used for resource pack management of this audience. @return the resource
server/src/main/java/net/hypejet/jet/server/util/game/audience/PacketReceivingCommonAudience.java:92
↓ 3 callers
Method
run
Runs the generators. @param serverPath an output directory of generated Java server source files, {@code null} if these files shoul
data/generator/src/main/java/net/hypejet/jet/data/generator/Generators.java:148
↓ 3 callers
Method
scoreMap
(@NonNull String objective)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:212
↓ 3 callers
Method
scoreboardName
Gets a name that this {@linkplain Entity entity} uses in {@linkplain Score score} management of {@linkplain Scoreboard scoreboards}. @return the name
api/src/main/java/net/hypejet/jet/entity/Entity.java:151
↓ 3 callers
Method
settings
Gets clientside {@linkplain Settings settings} of this {@linkplain Player player}. @return the clientside settings @since 1.0
api/src/main/java/net/hypejet/jet/entity/player/Player.java:50
↓ 3 callers
Method
simulationDistance
Gets a chunk distance within the server and clients should process entities. @return the distance @since 1.0
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:234
↓ 3 callers
Method
skyLightData
Gets {@linkplain List a list} containing an array with skylight data for each section of the chunk with a bit set in the skylight mask, starting with
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:142
↓ 3 callers
Method
skyLightMask
Gets a bitset containing bits for each section of the chunk, a section below the lowest section and a section above the highest section, each bit set
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:93
↓ 3 callers
Method
synchronize
Sends a request to the client to synchronize clientside {@linkplain Position position} and velocity {@linkplain Vector vector} with the specified valu
server/src/main/java/net/hypejet/jet/server/entity/player/movement/PlayerMovementSynchronizer.java:56
↓ 3 callers
Method
toBuilder
Creates {@linkplain Builder a nibble array builder} and fills it with all values from this {@linkplain NibbleArray nibble array}. @return the nibble
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:87
↓ 3 callers
Method
updateRawPositionAndVelocity
Updates a {@linkplain Position position} and a velocity {@linkplain Vector vector} of this {@linkplain JetEntity entity} without sending any updates t
server/src/main/java/net/hypejet/jet/server/entity/JetEntity.java:227
↓ 3 callers
Method
validateCoordinateValue
Validates whether a value specified is valid for a coordinate relative to {@linkplain AbstractChunkPalette a chunk palette} of this type. @param valu
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/type/ChunkPaletteType.java:126
↓ 3 callers
Method
valueCountMap
Gets a map, which maps all light-level values to their count in this storage. @return the map @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/light/storage/AbstractLightStorage.java:104
↓ 3 callers
Method
withUpdates
Creates a copy of this {@linkplain LightSectionList light section list} with updates specified applied. @param skyLightUpdates a map which maps chunk
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSectionList.java:133
↓ 3 callers
Method
withUpdates
Creates a new {@linkplain JetLightSection light section} with updates specified that should be applied to the skylight storage and to the block light
server/src/main/java/net/hypejet/jet/server/world/chunk/light/JetLightSection.java:41
↓ 3 callers
Method
withUpdates
Creates a new {@linkplain BitStorage bit storage}, which is a copy of this bit storage with updates specified applied. @param updates the updates @re
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:122
↓ 3 callers
Method
withView
Creates a copy of this {@linkplain Position position} with the specified yaw and pitch angles. @param yaw the yaw angle that the position should have
api/src/main/java/net/hypejet/jet/world/coordinate/Position.java:82
↓ 3 callers
Method
writer
Gets {@linkplain ArgumentWriter an argument writer}, which writes {@linkplain ArgumentType an argument type} specified. @param argumentTypeClass a cl
server/src/main/java/net/hypejet/jet/server/command/argument/ArgumentWriterRegistry.java:53
↓ 2 callers
Method
addEntity
Adds the specified {@linkplain JetEntity entity} to this {@linkplain JetWorld world}. @param entity the entity to add to this world @throws IllegalAr
server/src/main/java/net/hypejet/jet/server/world/JetWorld.java:135
↓ 2 callers
Method
addViewer
Adds {@linkplain JetPlayer a player} specified to {@linkplain Set a set} of viewers of this {@linkplain JetScoreboard scoreboard}. Moreover, {@linkpla
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:173
↓ 2 callers
Method
argumentTypeClass
Gets a class of the argument type that this writer reads and writes. @return the class @since 1.0
server/src/main/java/net/hypejet/jet/server/command/argument/ArgumentWriter.java:49
↓ 2 callers
Method
assertUpdated
(@NonNull LightSectionList previousList, @NonNull LightSectionList newList,
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSectionListTest.java:78
↓ 2 callers
Method
assertValidUpdateData
(@NonNull LightSectionList updatedList, @NonNull LightType lightType,
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSerializationDataTest.java:188
↓ 2 callers
Method
authors
Gets {@linkplain Set a set} of authors of the plugin. @return the set @since 1.0
api/src/main/java/net/hypejet/jet/plugin/Plugin.java:40
↓ 2 callers
Method
bind
Creates and binds a {@linkplain Channel channel} for this {@linkplain NetworkManager network manager}. @since 1.0 @see Channel
server/src/main/java/net/hypejet/jet/server/network/NetworkManager.java:77
↓ 2 callers
Method
biome
Gets a {@linkplain Holder.Reference holder referencing to} a {@linkplain Biome biome} present at a {@linkplain BiomePosition biome position} associate
server/src/main/java/net/hypejet/jet/server/world/acquisition/worldmap/WorldMapAcquisitionImpl.java:164
↓ 2 callers
Method
biomePalette
Gets {@linkplain ChunkPalette a chunk palette}, which stores biomes of this chunk section. @return the chunk palette @since 1.0
api/src/main/java/net/hypejet/jet/world/chunk/section/ChunkSection.java:29
↓ 2 callers
Method
biomePalette
Gets a chunk palette of biomes of this chunk section. @return the chunk palette @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/section/JetChunkSection.java:85
↓ 2 callers
Method
blockEntity
Gets data of a block entity of a block at {@linkplain BlockPosition a block position} specified in {@linkplain JetChunk a chunk} specified. @param po
server/src/main/java/net/hypejet/jet/server/world/acquisition/worldmap/WorldMapAcquisitionImpl.java:149
↓ 2 callers
Method
blockLightLevel
Gets a value specifying a block light level of a block which is in this {@linkplain JetChunk chunk} at {@linkplain ChunkRelativeBlockPosition a chunk-
server/src/main/java/net/hypejet/jet/server/world/chunk/JetChunk.java:235
↓ 2 callers
Method
blockState
Gets {@linkplain BlockState a block state} of a block, which is in this {@linkplain JetChunk chunk} at {@linkplain ChunkRelativeBlockPosition a chunk-
server/src/main/java/net/hypejet/jet/server/world/chunk/JetChunk.java:181
↓ 2 callers
Method
blockStatePalette
Gets a chunk palette of block states of this chunk section. @return the chunk palette @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/section/JetChunkSection.java:74
↓ 2 callers
Method
blockStateRegistry
Gets a {@linkplain BlockStateRegistry block state registry} containing all possible {@linkplain net.hypejet.jet.world.block.BlockState block states} t
api/src/main/java/net/hypejet/jet/registry/RegistryManager.java:37
↓ 2 callers
Method
blockY
Gets the rounded down value of {@code Y} axis of this {@linkplain Coordinate coordinate}. @return the rounded down {@code Y} axis value @since 1.0
api/src/main/java/net/hypejet/jet/world/coordinate/Coordinate.java:77
↓ 2 callers
Method
broadcastCommandUpdate
()
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:224
↓ 2 callers
Method
build
()
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:160
↓ 2 callers
Method
chunkSectionBuilder
Gets {@linkplain ChunkSectionBuilder a chunk section builder} of {@linkplain JetChunkSection a chunk section} that the chunk should have at an index s
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:209
↓ 2 callers
Method
contents
Gets contents of this {@linkplain HolderSet holder set}. @param registry a registry that should provide holders if this holder set does not store the
api/src/main/java/net/hypejet/jet/registry/holder/HolderSet.java:30
↓ 2 callers
Method
create
Creates a {@linkplain Vector vector} with the specified {@code X}, {@code Y} and {@code Z} axis values. @param x the {@code X} axis value that the ve
api/src/main/java/net/hypejet/jet/world/coordinate/Vector.java:48
↓ 2 callers
Method
create
Creates {@linkplain HeightMap a height map} for {@linkplain ChunkSectionList a chunk section list} specified. @param type a type that the height map
server/src/main/java/net/hypejet/jet/server/world/chunk/heightmap/HeightMap.java:178
↓ 2 callers
Method
createBitShiftCount
(long index)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:170
↓ 2 callers
Method
createChunkSectionBuilder
Creates a new {@linkplain ChunkSectionBuilder chunk section builder} with a default {@linkplain BlockState block state} and {@linkplain Biome biome} s
server/src/main/java/net/hypejet/jet/server/world/chunk/builder/JetChunkBuilder.java:236
↓ 2 callers
Method
createChunkSectionCoordinateValue
Creates a chunk-section position value for an absolute value specified. @param value the absolute value @param paletteType a chunk palette type, whos
server/src/main/java/net/hypejet/jet/server/world/coordinate/chunk/section/ChunkSectionPosition.java:48
↓ 2 callers
Method
createChunkSectionPaletteUpdateMap
( @NonNull Map<P, ? extends E> updates, @NonNull DimensionType dimensionType, @NonNull
server/src/main/java/net/hypejet/jet/server/world/chunk/section/ChunkSectionList.java:209
↓ 2 callers
Method
createConstantName
(@NonNull ResourceLocation location)
data/generator/src/main/java/net/hypejet/jet/data/generator/generator/generators/KeyDefinitionGenerator.java:151
↓ 2 callers
Method
createDataIndex
(int elementIndex)
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:198
↓ 2 callers
Method
createDataValuePositionBitShift
(int elementIndex)
server/src/main/java/net/hypejet/jet/server/util/storage/BitStorage.java:202
↓ 2 callers
Method
createDeclarationPacket
()
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:234
↓ 2 callers
Method
createDefaultServerListDescription
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:312
↓ 2 callers
Method
createDefaultUnsupportedVersionMessage
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:305
↓ 2 callers
Method
createDirect
Creates {@linkplain LightStorage a light storage} for {@linkplain NibbleArray a nibble array} of light-level values specified. <p>Indices of the nibb
api/src/main/java/net/hypejet/jet/world/chunk/factory/light/LightStorageFactory.java:25
↓ 2 callers
Method
createElementArray
Creates an array containing registry indices of elements of this palette. @return the array @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:187
↓ 2 callers
Method
createEventLoop
Creates {@linkplain MultithreadEventLoopGroup a multi-threaded event loop group}, which supports this transport. @return the event loop group @since
server/src/main/java/net/hypejet/jet/server/network/netty/transport/NettyTransportType.java:74
↓ 2 callers
Method
createIndexToLightStorageMap
( @NonNull Set<ChunkRelativeBlockPosition> affectedBlockPositions, @NonNull DimensionType dimensio
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSerializationData.java:284
↓ 2 callers
Method
createIndexToLightUpdatesMap
( @NonNull Object2ByteMap<ChunkRelativeBlockPosition> updates )
server/src/main/java/net/hypejet/jet/server/world/chunk/light/LightSectionList.java:225
↓ 2 callers
Method
createNoSuchObjectiveException
(@NonNull String name)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:230
↓ 2 callers
Method
createPackedArrayLength
(long length)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:142
↓ 2 callers
Method
createSpawnInfo
(@NotNull JetWorld world, @Nullable GameMode gameMode, @N
server/src/main/java/net/hypejet/jet/server/entity/player/JetPlayer.java:421
↓ 2 callers
Method
createTagsPacket
()
server/src/main/java/net/hypejet/jet/server/registry/JetRegistryManager.java:286
↓ 2 callers
Method
createTransfersNotAllowedMessage
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:320
↓ 2 callers
Method
createdPackedArrayIndex
(@IntRange(from = 0, to = MAXIMUM_INDEX) long index)
api/src/main/java/net/hypejet/jet/util/array/NibbleArray.java:156
↓ 2 callers
Method
defaultAddress
()
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:316
↓ 2 callers
Method
defaultBlockState
Gets a default {@linkplain BlockState block state} of the specified {@linkplain BlockType block type}. @param blockType the holder referencing to the
api/src/main/java/net/hypejet/jet/registry/blockstate/BlockStateRegistry.java:24
↓ 2 callers
Method
defaultScoreboard
Gets {@linkplain Scoreboard a scoreboard} instance that is used as an initial scoreboard (if no other initial scoreboard was specified in {@linkplain
api/src/main/java/net/hypejet/jet/scoreboard/ScoreboardManager.java:25
↓ 2 callers
Method
dependencies
Gets {@linkplain Set a set} of dependencies of the plugin. @return the set @since 1.0
api/src/main/java/net/hypejet/jet/plugin/Plugin.java:48
↓ 2 callers
Method
displayedObjectivesHandler
(@NonNull JetPlayer player)
server/src/main/java/net/hypejet/jet/server/scoreboard/JetScoreboard.java:219
↓ 2 callers
Method
distance
(int first, int second)
api/src/main/java/net/hypejet/jet/world/coordinate/chunk/ChunkPosition.java:34
↓ 2 callers
Method
elementCount
Gets a number of elements that palettes of this type store. @return the number @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/type/ChunkPaletteType.java:114
↓ 2 callers
Method
elementRegistryIndex
Gets a registry index of the element that this chunk palette returns for each position. @return the element registry index @since 1.0
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/SingleValuedChunkPalette.java:79
↓ 2 callers
Method
enforceSecureProfile
Gets whether only clients with signed public key from Mojang should be able to join the server. @return {@code true} if only clients with the key sho
server/src/main/java/net/hypejet/jet/server/configuration/unparsed/UnparsedServerConfiguration.java:264
↓ 2 callers
Method
ensureAirNotOpaque
(@NonNull HeightMapType type)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/heightmap/HeightMapTest.java:170
↓ 2 callers
Method
ensureOpaque
(@NonNull HeightMapType type, @NonNull JetBlockState opaqueBlockState)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/heightmap/HeightMapTest.java:175
↓ 2 callers
Method
ensurePermittedAndLocked
()
server/src/main/java/net/hypejet/jet/server/entity/acquisition/respawn/WriteRespawnScreenEnabledAcquisition.java:58
↓ 2 callers
Method
entityId
Gets a numeric identifier of this {@linkplain Entity entity}, unique to a {@linkplain MinecraftServer server} that this {@linkplain Entity entity} is
api/src/main/java/net/hypejet/jet/entity/Entity.java:42
↓ 2 callers
Method
eventNode
()
server/src/main/java/net/hypejet/jet/server/JetMinecraftServer.java:84
↓ 2 callers
Method
execute
Executes a command with the specified input. @param input the command input @param source the command source that sent the specified command input @s
server/src/main/java/net/hypejet/jet/server/command/JetCommandManager.java:150
↓ 2 callers
Method
findHeightAndCreateElement
(int startingBlockY, @NonNull ChunkSectionList chunkSectionList,
server/src/main/java/net/hypejet/jet/server/world/chunk/heightmap/HeightMap.java:200
↓ 2 callers
Method
from
Creates an absolute {@linkplain BlockPosition block position} from {@linkplain ChunkRelativeBlockPosition a chunk-relative block position}, which is r
server/src/main/java/net/hypejet/jet/server/util/coordinate/AbsolutePositionUtil.java:31
↓ 2 callers
Method
generate
Generates a {@linkplain TypeSpec type spec} of the type. @return the generated type spec @since 1.0
data/generator/src/main/java/net/hypejet/jet/data/generator/generator/CodeGenerator.java:23
↓ 2 callers
Method
handle
Handles the packet. @param packet the packet @param session a session, during which the packet is handled @since 1.0
server/src/main/java/net/hypejet/jet/server/network/packet/handler/ClientPacketHandler.java:47
↓ 2 callers
Method
handlePositionFromClient
Updates {@linkplain Position position} of this {@linkplain JetPlayer player} with the specified value, which comes from the client. @param position t
server/src/main/java/net/hypejet/jet/server/entity/player/JetPlayer.java:401
↓ 2 callers
Method
handleState
Handles a status of loading a resource pack. @param uniqueId a unique identifier of the resource pack @param status the status @param audience an aud
server/src/main/java/net/hypejet/jet/server/network/session/pack/ResourcePackHandler.java:151
↓ 2 callers
Method
hardcore
Gets whether the server is in hardcore mode. @return {@code true} if the server is in hardcore mode, {@code false} otherwise @since 1.0
api/src/main/java/net/hypejet/jet/configuration/ServerConfiguration.java:39
↓ 2 callers
Method
incrementValue
(@NonNull Object2ShortMap<K> map, @NonNull K key)
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:286
↓ 2 callers
Method
incrementValue
(@NonNull Byte2ShortMap map, byte key)
server/src/main/java/net/hypejet/jet/server/world/chunk/light/storage/AbstractLightStorage.java:143
↓ 2 callers
Method
indexOf
Gets a registry index of the specified {@linkplain BlockState block state}. @param blockState the block state @return the registry index @throws Ille
server/src/main/java/net/hypejet/jet/server/registry/blockstate/JetBlockStateRegistry.java:151
↓ 2 callers
Method
indexSpecification
Gets an {@linkplain IndexSpecification index specification} specifying registry indices for elements of this palette. @return the index specification
server/src/main/java/net/hypejet/jet/server/world/chunk/palette/AbstractChunkPalette.java:110
↓ 2 callers
Method
initializeChildren
Initializes children of the command node. @param children the children @throws IllegalStateException if the children nodes have been already initiali
server/src/main/java/net/hypejet/jet/server/network/packet/packets/server/play/ServerDeclareCommandsPlayPacket.java:91
↓ 2 callers
Method
invalidLengthException
(int length)
server/src/main/java/net/hypejet/jet/server/network/codec/other/StringNetworkCodec.java:76
↓ 2 callers
Method
isBlockLightFilled
(int index)
server/src/test/java/net/hypejet/jet/server/test/world/chunk/light/LightSerializationDataTest.java:184
↓ 2 callers
Method
isCancelled
Gets whether the event has been cancelled. @return {@code} if the event was cancelled, {@code} otherwise @since 1.0
api/src/main/java/net/hypejet/jet/event/events/CancellableEvent.java:30
← previous
next →
201–300 of 1,964, ranked by callers