Enum FormField.Type

    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • fromString

        public static FormField.Type fromString​(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.