Package com.myscript.iink
Enum Class TextFormat
- All Implemented Interfaces:
Serializable
,Comparable<TextFormat>
,Constable
Predefined Text Box formats.
- Since:
- 2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionHeader 1 format.Header 2 format.Bullet list format.Checkbox list format.Numbered list format.Paragraph format. -
Method Summary
Modifier and TypeMethodDescriptionstatic TextFormat
Returns the enum constant of this class with the specified name.static TextFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
H1
Header 1 format. -
H2
Header 2 format. -
PARAGRAPH
Paragraph format. -
LIST_BULLET
Bullet list format. -
LIST_CHECKBOX
Checkbox list format. -
LIST_NUMBERED
Numbered list format.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-