Enum PopupField.StringFieldOption
- java.lang.Object
-
- java.lang.Enum<PopupField.StringFieldOption>
-
- com.esri.arcgisruntime.mapping.popup.PopupField.StringFieldOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PopupField.StringFieldOption>
- Enclosing class:
- PopupField
public static enum PopupField.StringFieldOption extends java.lang.Enum<PopupField.StringFieldOption>
Type of input box editors see when editing the field in a pop-up. Controls the type of input box editors inside a pop-up.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTI_LINE
A multi-line input box.RICH_TEXT
A rich text editor allowing for bold text, highlighting, and so forth.SINGLE_LINE
A single-line input box.UNKNOWN
Unknown string field option.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PopupField.StringFieldOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PopupField.StringFieldOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_LINE
public static final PopupField.StringFieldOption SINGLE_LINE
A single-line input box.
-
MULTI_LINE
public static final PopupField.StringFieldOption MULTI_LINE
A multi-line input box.
-
RICH_TEXT
public static final PopupField.StringFieldOption RICH_TEXT
A rich text editor allowing for bold text, highlighting, and so forth.
-
UNKNOWN
public static final PopupField.StringFieldOption UNKNOWN
Unknown string field option.
-
-
Method Detail
-
values
public static PopupField.StringFieldOption[] 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 (PopupField.StringFieldOption c : PopupField.StringFieldOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PopupField.StringFieldOption 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 namejava.lang.NullPointerException
- if the argument is null
-
-