Enum FormField.Type

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      bool
      Boolean type.
      fixed
      Fixed for putting in text to show sections, or just advertise your web site in the middle of the form.
      hidden
      Is not given to the user at all, but returned with the questionnaire.
      jid_multi
      multiple entries for JIDs.
      jid_single
      Jabber ID - choosing a JID from your roster, and entering one based on the rules for a JID.
      list_multi
      Given a list of choices, pick one or more.
      list_single
      Given a list of choices, pick one.
      text_multi
      Multiple lines of text entry.
      text_private
      Instead of showing the user what they typed, you show ***** to protect it.
      text_single
      Single line or word of text.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static FormField.Type fromString​(java.lang.String string)
      Get a form field type from the given string.
      java.lang.String toString()  
      static FormField.Type valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static FormField.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • bool

        public static final FormField.Type bool
        Boolean type. Can be 0 or 1, true or false, yes or no. Default value is 0.

        Note that in XEP-4 this type is called 'boolean', but since that String is a restricted keyword in Java, it is named 'bool' in Smack.

      • fixed

        public static final FormField.Type fixed
        Fixed for putting in text to show sections, or just advertise your web site in the middle of the form.
      • hidden

        public static final FormField.Type hidden
        Is not given to the user at all, but returned with the questionnaire.
      • jid_single

        public static final FormField.Type jid_single
        Jabber ID - choosing a JID from your roster, and entering one based on the rules for a JID.
      • text_private

        public static final FormField.Type text_private
        Instead of showing the user what they typed, you show ***** to protect it.
    • Method Detail

      • values

        public static FormField.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FormField.Type c : FormField.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FormField.Type valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static FormField.Type fromString​(java.lang.String string)
        Get a form field type from the given string. If string is null, then null will be returned.
        Parameters:
        string - the string to transform or null.
        Returns:
        the type or null.