Uses of Class
jade.JadeObject

Packages that use JadeObject
Package
Description
 
 
  • Uses of JadeObject in client

    Methods in client that return JadeObject
    Modifier and Type
    Method
    Description
    Packet.toJadeObject()
    Converts a Packet object to a JadeObject.This is done by creating a JadePair for each variable of the packet.
  • Uses of JadeObject in jade

    Methods in jade that return JadeObject
    Modifier and Type
    Method
    Description
    JadeDeserializer.deserializeFromFile(String dir)
    Deserializes a string from a given file into a JadeObject.The file and its strings require a large amount of parsing for correct JadeObject creation.New lines are removed, data is split based on ; and pairs are determined by : and ''.
    JadeDeserializer.deserializeFromString(String jadeString)
    Deserializes a given string.The string itself is first parsed removing any unnceresary artifcats.It is split identically to the file splitting.
    Methods in jade with parameters of type JadeObject
    Modifier and Type
    Method
    Description
    void
    JadeSerializer.serializeObjectToFile(JadeObject obj, String dir)
    This method, serializeObjectToFile, writes a JadeObject to a given directory.Depending on whether pretty printing is enabled or not the structure of the file may look different.The changed structure does not affect the functionality of any of the JadeSystems.
    JadeSerializer.serializeObjectToString(JadeObject obj)
    This method, serializeObjectToString, creates a string from a given JadeObject.The structure of the string may also vary depending on pretty printing but not affect its functionality.