Package org.jivesoftware.smackx.xdata
Enum FormField.Type
- All Implemented Interfaces:
Serializable,Comparable<FormField.Type>
- Enclosing class:
- FormField
Form Field Types as defined in XEP-4 § 3.3.
- See Also:
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBoolean type.Fixed for putting in text to show sections, or just advertise your web site in the middle of the form.Is not given to the user at all, but returned with the questionnaire.multiple entries for JIDs.Jabber ID - choosing a JID from your roster, and entering one based on the rules for a JID.Given a list of choices, pick one or more.Given a list of choices, pick one.Multiple lines of text entry.Instead of showing the user what they typed, you show ***** to protect it.Single line or word of text. -
Method Summary
Modifier and TypeMethodDescriptionstatic FormField.TypefromString(String string) Get a form field type from the given string.toString()static FormField.TypeReturns 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.
-
Enum Constant Details
-
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
Fixed for putting in text to show sections, or just advertise your web site in the middle of the form. -
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 Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<FormField.Type>
-
fromString
Get a form field type from the given string. Ifstringis null, then null will be returned.- Parameters:
string- the string to transform or null.- Returns:
- the type or null.
-