HyCodeYourTale
classpublicPriority 3

ValueStore

com.hypixel.hytale.server.npc.valuestore.ValueStore

implements Component

12

Methods

12

Public Methods

3

Fields

1

Constructors

Constants

ValueStore.Type[]VALUES= values()

Constructors

private
ValueStore(int stringCount, int intCount, int doubleCount)

Methods

Public Methods (12)

public
Component<EntityStore> clone()
@Nonnull@Override
public
String get()
publicstatic
ComponentType<EntityStore, ValueStore> getComponentType()
public
int getDoubleSlot(String name)
public
int getIntSlot(String name)
public
int getStringSlot(String name)
public
double readDouble(int slot)
public
int readInt(int slot)
public
String readString(int slot)
public
void storeDouble(int slot, double value)
public
void storeInt(int slot, int value)
public
void storeString(int slot, String value)

Fields

Private/Package Fields (3)

privatedouble[] doubleValues
privateint[] intValues
privateString[] stringValues

Related Classes