Uses of Interface
com.smartfoxserver.v2.entities.data.ISFSArray
-
-
Uses of ISFSArray in com.smartfoxserver.v2.buddylist
Methods in com.smartfoxserver.v2.buddylist that return ISFSArray Modifier and Type Method Description static ISFSArray
BuddyUtils. encodeBuddyVariables(java.util.List<BuddyVariable> buddyVariables)
ISFSArray
Buddy. getBuddyVariablesData()
ISFSArray
SFSBuddy. getBuddyVariablesData()
ISFSArray
SFSBuddyVariable. getSFSArrayValue()
ISFSArray
DefaultBuddySerializer. serialize(Buddy buddy)
ISFSArray
IBuddySerializer. serialize(Buddy buddy)
ISFSArray
Buddy. toSFSArray()
ISFSArray
BuddyList. toSFSArray()
ISFSArray
SFSBuddy. toSFSArray()
ISFSArray
SFSBuddyList. toSFSArray()
ISFSArray
SFSBuddyVariable. toSFSArray()
Methods in com.smartfoxserver.v2.buddylist with parameters of type ISFSArray Modifier and Type Method Description static SFSBuddyVariable
SFSBuddyVariable. newFromSFSArray(ISFSArray array)
SFSArray is expected to be formatted as follows 0: (str) - name 1: (byte) - type id 2: (*) - valueprotected void
SFSBuddyVariable. populateArrayWithValue(ISFSArray sfsa)
Populate an SFSArray wih the typed value of this Variableprotected void
SFSBuddyVariable. setValue(ISFSArray val)
-
Uses of ISFSArray in com.smartfoxserver.v2.db
Methods in com.smartfoxserver.v2.db that return ISFSArray Modifier and Type Method Description ISFSArray
IDBManager. executeQuery(java.lang.String sql)
Deprecated.Please useIDBManager.executeQuery(String, Object[])
ISFSArray
IDBManager. executeQuery(java.lang.String sql, java.lang.Object[] params)
Perform a SQL query and return a structured object based on SFSArray and SFSObject.ISFSArray
SFSDBManager. executeQuery(java.lang.String sql)
This is a small variation onIDBManager.executeQuery(String, Object[])
where no additional SQL parameter is used.ISFSArray
SFSDBManager. executeQuery(java.lang.String sql, java.lang.Object[] params)
Perform a SQL query and return a structured object based on SFSArray and SFSObject. -
Uses of ISFSArray in com.smartfoxserver.v2.entities
Methods in com.smartfoxserver.v2.entities that return ISFSArray Modifier and Type Method Description ISFSArray
SFSZone. getRoomListData()
ISFSArray
SFSZone. getRoomListData(java.util.List<java.lang.String> groupIds)
ISFSArray
Zone. getRoomListData()
INTERNALISFSArray
Zone. getRoomListData(java.util.List<java.lang.String> groupIds)
INTERNALISFSArray
Room. getRoomVariablesData(boolean globalsOnly)
ISFSArray
SFSRoom. getRoomVariablesData(boolean globalsOnly)
ISFSArray
Room. getUserListData()
ISFSArray
SFSRoom. getUserListData()
ISFSArray
SFSUser. getUserVariablesData()
ISFSArray
User. getUserVariablesData()
ISFSArray
BannedUser. toSFSArray()
ISFSArray
Room. toSFSArray(boolean globalVarsOnly)
ISFSArray
SFSBannedUser. toSFSArray()
ISFSArray
SFSRoom. toSFSArray(boolean globalRoomVarsOnly)
ISFSArray
SFSUser. toSFSArray()
ISFSArray
SFSUser. toSFSArray(Room room)
ISFSArray
User. toSFSArray()
ISFSArray
User. toSFSArray(Room room)
-
Uses of ISFSArray in com.smartfoxserver.v2.entities.data
Classes in com.smartfoxserver.v2.entities.data that implement ISFSArray Modifier and Type Class Description class
SFSArray
SFSArray and SFSObject represent a platform-neutral, high-level objects that abstract the data transport between client and server.class
SFSArrayLite
Methods in com.smartfoxserver.v2.entities.data that return ISFSArray Modifier and Type Method Description ISFSArray
ISFSArray. getSFSArray(int index)
Get the element at the specified index as ISFSArray.ISFSArray
ISFSObject. getSFSArray(java.lang.String key)
Get the element for the specified key as ISFSArray.ISFSArray
SFSArray. getSFSArray(int index)
ISFSArray
SFSObject. getSFSArray(java.lang.String key)
Methods in com.smartfoxserver.v2.entities.data with parameters of type ISFSArray Modifier and Type Method Description void
ISFSArray. addSFSArray(ISFSArray value)
Add a nested ISFSArrayvoid
SFSArray. addSFSArray(ISFSArray value)
void
ISFSObject. putSFSArray(java.lang.String key, ISFSArray value)
Add a nested ISFSArrayvoid
SFSObject. putSFSArray(java.lang.String key, ISFSArray value)
-
Uses of ISFSArray in com.smartfoxserver.v2.entities.invitation
Methods in com.smartfoxserver.v2.entities.invitation with parameters of type ISFSArray Modifier and Type Method Description static Invitation
SFSInvitation. fromSFSArray(ISFSArray sfsa)
-
Uses of ISFSArray in com.smartfoxserver.v2.entities.match
Methods in com.smartfoxserver.v2.entities.match that return ISFSArray Modifier and Type Method Description ISFSArray
MatchExpression. toSFSArray()
privateMethods in com.smartfoxserver.v2.entities.match with parameters of type ISFSArray Modifier and Type Method Description static MatchExpression
MatchExpression. fromSFSArray(ISFSArray sfsa)
-
Uses of ISFSArray in com.smartfoxserver.v2.entities.variables
Methods in com.smartfoxserver.v2.entities.variables that return ISFSArray Modifier and Type Method Description ISFSArray
SFSUserVariable. getSFSArrayValue()
Get the value of the variable as SFSArrayISFSArray
Variable. getSFSArrayValue()
Get the value of the variable as SFSArrayISFSArray
SFSRoomVariable. toSFSArray()
ISFSArray
SFSUserVariable. toSFSArray()
ISFSArray
Variable. toSFSArray()
PrivateMethods in com.smartfoxserver.v2.entities.variables with parameters of type ISFSArray Modifier and Type Method Description static SFSRoomVariable
SFSRoomVariable. newFromSFSArray(ISFSArray array)
static SFSUserVariable
SFSUserVariable. newFromSFSArray(ISFSArray array)
SFSArray is expected to be formatted as follows 0: (str) -> name 1: (byte) -> type id 2: (Object) -> value 3: (bool) -> isPrivateprotected void
SFSUserVariable. populateArrayWithValue(ISFSArray sfsa)
Populate an SFSArray wih the typed value of this Variableprotected void
SFSUserVariable. setValue(ISFSArray val)
-
Uses of ISFSArray in com.smartfoxserver.v2.mmo
Methods in com.smartfoxserver.v2.mmo that return ISFSArray Modifier and Type Method Description ISFSArray
IMMOItem. toSFSArray()
Used internallyISFSArray
MMOItem. toSFSArray()
Used internallyISFSArray
MMORoom. toSFSArray(boolean globalRoomVarsOnly)
Methods in com.smartfoxserver.v2.mmo with parameters of type ISFSArray Modifier and Type Method Description static MMOItemVariable
MMOItemVariable. newFromSFSArray(ISFSArray array)
-