Package | Description |
---|---|
com.comphenix.protocol | |
com.comphenix.protocol.injector | |
com.comphenix.protocol.reflect |
Modifier and Type | Method and Description |
---|---|
void |
ProtocolManager.updateEntity(org.bukkit.entity.Entity entity,
java.util.List<org.bukkit.entity.Player> observers)
Completely refresh all clients about an entity.
|
Modifier and Type | Method and Description |
---|---|
PacketContainer |
PacketConstructor.createPacket(java.lang.Object... values)
Construct a packet using the special builtin Minecraft constructors.
|
void |
PacketFilterManager.updateEntity(org.bukkit.entity.Entity entity,
java.util.List<org.bukkit.entity.Player> observers) |
Modifier and Type | Method and Description |
---|---|
static FieldAccessException |
FieldAccessException.fromFormat(java.lang.String message,
java.lang.Object... params) |
Modifier and Type | Method and Description |
---|---|
java.util.List<TField> |
StructureModifier.getValues()
Retrieve every value stored in the fields of the current type.
|
StructureModifier<TField> |
StructureModifier.modify(int fieldIndex,
com.google.common.base.Function<TField,TField> select)
Correctly modifies the value of a field.
|
TField |
StructureModifier.read(int fieldIndex)
Reads the value of a field given its index.
|
TField |
StructureModifier.readSafely(int fieldIndex)
Reads the value of a field if and ONLY IF it exists.
|
StructureModifier<TField> |
StructureModifier.write(int fieldIndex,
TField value)
Writes the value of a field given its index.
|
StructureModifier<TField> |
StructureModifier.writeDefaults()
Sets all non-primitive fields to a more fitting default value.
|
StructureModifier<TField> |
StructureModifier.writeSafely(int fieldIndex,
TField value)
Writes the value of a given field IF and ONLY if it exists.
|