Uses of Class
com.comphenix.protocol.reflect.FieldAccessException
Packages that use FieldAccessException
Package
Description
Contains classes for retrieving the main ProtocolMananger object.
-
Uses of FieldAccessException in com.comphenix.protocol
Methods in com.comphenix.protocol that throw FieldAccessExceptionModifier and TypeMethodDescriptionorg.bukkit.entity.EntityProtocolManager.getEntityFromID(org.bukkit.World container, int id)Retrieve the associated entity.List<org.bukkit.entity.Player>ProtocolManager.getEntityTrackers(org.bukkit.entity.Entity entity)Retrieve every client that is receiving information about a given entity.voidProtocolManager.updateEntity(org.bukkit.entity.Entity entity, List<org.bukkit.entity.Player> observers)Completely resend an entity to a list of clients. -
Uses of FieldAccessException in com.comphenix.protocol.async
Methods in com.comphenix.protocol.async that throw FieldAccessExceptionModifier and TypeMethodDescriptionbooleanAsyncMarker.isMinecraftAsync(PacketEvent event)Determine if Minecraft allows asynchronous processing of this packet. -
Uses of FieldAccessException in com.comphenix.protocol.injector
Methods in com.comphenix.protocol.injector that throw FieldAccessExceptionModifier and TypeMethodDescriptionPacketConstructor.createPacket(Object... values)Construct a packet using the special builtin Minecraft constructors.org.bukkit.entity.EntityPacketFilterManager.getEntityFromID(org.bukkit.World container, int id)List<org.bukkit.entity.Player>PacketFilterManager.getEntityTrackers(org.bukkit.entity.Entity entity)voidPacketFilterManager.updateEntity(org.bukkit.entity.Entity entity, List<org.bukkit.entity.Player> observers) -
Uses of FieldAccessException in com.comphenix.protocol.reflect
Methods in com.comphenix.protocol.reflect that return FieldAccessExceptionModifier and TypeMethodDescriptionstatic FieldAccessExceptionFieldAccessException.fromFormat(String message, Object... params)Methods in com.comphenix.protocol.reflect that throw FieldAccessExceptionModifier and TypeMethodDescriptionStructureModifier.getValues()Retrieve every value stored in the fields of the current type.Correctly modifies the value of a field.StructureModifier.read(int fieldIndex)Reads the value of a field given its index.StructureModifier.readSafely(int fieldIndex)Reads the value of a field only if it exists.voidStructureModifier.setReadOnly(int fieldIndex, boolean value)Set whether or not a field should be treated as read only.Writes the value of a field given its index.StructureModifier.writeDefaults()Sets all non-primitive fields to a more fitting default value.StructureModifier.writeSafely(int fieldIndex, TField value)Writes the value of a given field IF and ONLY if it exists. -
Uses of FieldAccessException in com.comphenix.protocol.reflect.compiler
Methods in com.comphenix.protocol.reflect.compiler that throw FieldAccessExceptionModifier and TypeMethodDescriptionCompiledStructureModifier.read(int fieldIndex)protected abstract ObjectCompiledStructureModifier.readGenerated(int fieldIndex)protected ObjectCompiledStructureModifier.readReflected(int index)Read the given field index using reflection.voidCompiledStructureModifier.setReadOnly(int fieldIndex, boolean value)CompiledStructureModifier.writeDefaults()protected abstract StructureModifier<Object>CompiledStructureModifier.writeGenerated(int index, Object value)protected voidCompiledStructureModifier.writeReflected(int index, Object value)Write the given field using reflection.