Class VariableType


  • public class VariableType
    extends java.lang.Object
    The 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 int ARRAY
      The type of the User/Buddy/Room Variable is SFSArray.
      static int BOOL
      The type of the User/Buddy/Room Variable is Boolean.
      static int DOUBLE
      The type of the User/Buddy/Room Variable is Double.
      static int INT
      The type of the User/Buddy/Room Variable is int.
      static int NULL
      The type of the User/Buddy/Room Variable is null.
      static int OBJECT
      The type of the User/Buddy/Room Variable is SFSObject.
      static int STRING
      The type of the User/Buddy/Room Variable is String.
    • Constructor Summary

      Constructors 
      Constructor Description
      VariableType()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NULL

        public static final int NULL
        The type of the User/Buddy/Room Variable is null.
        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
    • Constructor Detail

      • VariableType

        public VariableType()