Record Class InputNumberFormElement
java.lang.Object
java.lang.Record
io.micronaut.views.fields.elements.InputNumberFormElement
- Record Components:
name- Name of the form control. Submitted with the form as part of a name/value pairid- It defines an identifier (ID) which must be unique in the whole documentvalue- A number representing the value of the input number.max- The maximum value to accept for this input.min- The minimum value to accept for this input.placeholder- The placeholder attribute is a string that provides a brief hint to the user as to what kind of information is expected in the field.required- If true indicates that the user must specify a value for the input before the owning form can be submitted.readOnly- A Boolean attribute which, if present, means this field cannot be edited by the user.step- The step attribute is a number that specifies the granularity that the value must adhere to, or the special value any.label- represents a caption for an item in a user interfaceerrors- errors associated with this input
- All Implemented Interfaces:
FormElementAttributes,GlobalAttributes,InputFormElement,FormElement
@Introspected(builder=@IntrospectionBuilder(builderClass=Builder.class))
public record InputNumberFormElement(@NonNull String name, @Nullable String id, @Nullable Number value, @Nullable Number max, @Nullable Number min, @Nullable String placeholder, boolean required, boolean readOnly, @Nullable String step, @NonNull Message label, @NonNull List<Message> errors)
extends Record
implements InputFormElement, GlobalAttributes, FormElementAttributes
Input type Number.
- Since:
- 4.1.0
- Author:
- Sergio del Amo
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classInput Number Builder. -
Constructor Summary
ConstructorsConstructorDescriptionInputNumberFormElement(@NonNull String name, @Nullable String id, @Nullable Number value, @Nullable Number max, @Nullable Number min, @Nullable String placeholder, boolean required, boolean readOnly, @Nullable String step, @NonNull Message label, @NonNull List<Message> errors) Creates an instance of aInputNumberFormElementrecord class. -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull InputNumberFormElement.Builderbuilder()final booleanIndicates whether some other object is "equal to" this one.errors()Returns the value of theerrorsrecord component.@NonNull InputTypegetType()final inthashCode()Returns a hash code value for this object.@Nullable Stringid()Returns the value of theidrecord component.@NonNull Messagelabel()Returns the value of thelabelrecord component.@Nullable Numbermax()Returns the value of themaxrecord component.@Nullable Numbermin()Returns the value of theminrecord component.@NonNull Stringname()Returns the value of thenamerecord component.@Nullable StringReturns the value of theplaceholderrecord component.booleanreadOnly()Returns the value of thereadOnlyrecord component.booleanrequired()Returns the value of therequiredrecord component.@Nullable Stringstep()Returns the value of thesteprecord component.final StringtoString()Returns a string representation of this record class.@Nullable Numbervalue()Returns the value of thevaluerecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.micronaut.views.fields.elements.FormElementAttributes
hasErrorsMethods inherited from interface io.micronaut.views.fields.elements.InputFormElement
getTag
-
Constructor Details
-
InputNumberFormElement
public InputNumberFormElement(@NonNull @NonNull String name, @Nullable @Nullable String id, @Nullable @Nullable Number value, @Nullable @Nullable Number max, @Nullable @Nullable Number min, @Nullable @Nullable String placeholder, boolean required, boolean readOnly, @Nullable @Nullable String step, @NonNull @NonNull Message label, @NonNull @NonNull List<Message> errors) Creates an instance of aInputNumberFormElementrecord class.- Parameters:
name- the value for thenamerecord componentid- the value for theidrecord componentvalue- the value for thevaluerecord componentmax- the value for themaxrecord componentmin- the value for theminrecord componentplaceholder- the value for theplaceholderrecord componentrequired- the value for therequiredrecord componentreadOnly- the value for thereadOnlyrecord componentstep- the value for thesteprecord componentlabel- the value for thelabelrecord componenterrors- the value for theerrorsrecord component
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceInputFormElement- Returns:
- Value of the type attribute of an input tag
-
builder
- Returns:
- the Input Number FormElement Builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Specified by:
namein interfaceFormElementAttributes- Returns:
- the value of the
namerecord component
-
id
Returns the value of theidrecord component.- Specified by:
idin interfaceGlobalAttributes- Returns:
- the value of the
idrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
max
Returns the value of themaxrecord component.- Returns:
- the value of the
maxrecord component
-
min
Returns the value of theminrecord component.- Returns:
- the value of the
minrecord component
-
placeholder
Returns the value of theplaceholderrecord component.- Returns:
- the value of the
placeholderrecord component
-
required
public boolean required()Returns the value of therequiredrecord component.- Specified by:
requiredin interfaceGlobalAttributes- Returns:
- the value of the
requiredrecord component
-
readOnly
public boolean readOnly()Returns the value of thereadOnlyrecord component.- Returns:
- the value of the
readOnlyrecord component
-
step
Returns the value of thesteprecord component.- Returns:
- the value of the
steprecord component
-
label
Returns the value of thelabelrecord component.- Specified by:
labelin interfaceFormElementAttributes- Returns:
- the value of the
labelrecord component
-
errors
Returns the value of theerrorsrecord component.- Specified by:
errorsin interfaceFormElementAttributes- Returns:
- the value of the
errorsrecord component
-