Enum Class Mark
- All Implemented Interfaces:
- Serializable,- Comparable<Mark>,- Constable
The kinds of marks.
- Since:
- 4.2.405
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionMark for a gadget whose value has changed compared to some reference value.Mark for a gadget that failed to be constructed with an error.Mark for a gadget that failed to be constructed with an information.Mark for a gadget that failed to be constructed with a warning.Mark for a gadget being set to default.Mark for a gadget whose value is deleted compared to some reference value.Mark for a gadget being focussed.Mark for a gadget whose value was inserted compared to some reference value.Mark for a gadget not having a valid value (avoiding save) wrt. validation rules.Mark for a gadget not having a valid value (avoiding release) wrt. validation rules.Mark for a gadget that has matches wrt. a search request.
- 
Method SummaryModifier and TypeMethodDescription@NotNull ColorProvides the color to be used for markup.intProvides the thickness to be used for markup.static MarkReturns the enum constant of this class with the specified name.static Mark[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
FOCUSMark for a gadget being focussed.- Since:
- 4.2.405
 
- 
MATCHMark for a gadget that has matches wrt. a search request.- Since:
- 4.2.405
 
- 
DEFAULT_VALUEMark for a gadget being set to default.- Since:
- 4.2.405
 
- 
INVALID_VALUEMark for a gadget not having a valid value (avoiding save) wrt. validation rules.- Since:
- 4.2.405
 
- 
INVALID_VALUE_WARNINGMark for a gadget not having a valid value (avoiding release) wrt. validation rules.- Since:
- 4.2.405
 
- 
INSERTEDMark for a gadget whose value was inserted compared to some reference value.- Since:
- 4.2.405
 
- 
DELETEDMark for a gadget whose value is deleted compared to some reference value.- Since:
- 4.2.405
 
- 
CHANGEDMark for a gadget whose value has changed compared to some reference value.- Since:
- 4.2.405
 
- 
CONSTRUCTION_ERRORMark for a gadget that failed to be constructed with an error.- Since:
- 5.0.107
 
- 
CONSTRUCTION_WARNINGMark for a gadget that failed to be constructed with a warning.- Since:
- 5.0.107
 
- 
CONSTRUCTION_INFORMATIONMark for a gadget that failed to be constructed with an information.- Since:
- 5.0.107
 
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getBorderColorProvides the color to be used for markup.- Returns:
- The markup color.
- Since:
- 4.2.405
 
- 
getBorderThicknesspublic int getBorderThickness()Provides the thickness to be used for markup.- Returns:
- The markup's thickness.
- Since:
- 4.2.405
 
 
-