Package sfs2x.client.entities.variables
Class VariableType
- java.lang.Object
-
- sfs2x.client.entities.variables.VariableType
-
public class VariableType extends java.lang.ObjectThe VariableType class contains the constants defining the valid types of User, Buddy and Room Variables to be passed to their constructors.
-
-
Field Summary
Fields Modifier and Type Field Description static intARRAYThe type of the User/Buddy/Room Variable is SFSArray.static intBOOLThe type of the User/Buddy/Room Variable is Boolean.static intDOUBLEThe type of the User/Buddy/Room Variable is Double.static intINTThe type of the User/Buddy/Room Variable is int.static intNULLThe type of the User/Buddy/Room Variable isnull.static intOBJECTThe type of the User/Buddy/Room Variable is SFSObject.static intSTRINGThe type of the User/Buddy/Room Variable is String.
-
Constructor Summary
Constructors Constructor Description VariableType()
-
-
-
Field Detail
-
NULL
public static final int NULL
The type of the User/Buddy/Room Variable isnull.- See Also:
- Constant Field Values
-
BOOL
public static final int BOOL
The type of the User/Buddy/Room Variable is Boolean.- See Also:
- Constant Field Values
-
INT
public static final int INT
The type of the User/Buddy/Room Variable is int.- See Also:
- Constant Field Values
-
DOUBLE
public static final int DOUBLE
The type of the User/Buddy/Room Variable is Double.- See Also:
- Constant Field Values
-
STRING
public static final int STRING
The type of the User/Buddy/Room Variable is String.- See Also:
- Constant Field Values
-
OBJECT
public static final int OBJECT
The type of the User/Buddy/Room Variable is SFSObject.- See Also:
SFSObject, Constant Field Values
-
ARRAY
public static final int ARRAY
The type of the User/Buddy/Room Variable is SFSArray.- See Also:
SFSArray, Constant Field Values
-
-