Record Class InputRadioFormElement
java.lang.Object
java.lang.Record
io.micronaut.views.fields.elements.InputRadioFormElement
- Record Components:
name- Name of the form control. Submitted with the form as part of a name/value pairrequired- If true indicates that the user must specify a value for the input before the owning form can be submitted.- Radio Buttonslabel- HTML label
- All Implemented Interfaces:
InputFormElement, FormElement
@Introspected(builder=@IntrospectionBuilder(builderClass=InputRadioFormElement.Builder.class))
public record InputRadioFormElement(@NonNull String name, boolean required, @NonNull List<Radio> buttons, @NonNull Message label)
extends Record
implements InputFormElement
Input Radio.
- Since:
- 4.1.0
- Author:
- Sergio del Amo
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionInputRadioFormElement(@NonNull String name, boolean required, @NonNull List<Radio> buttons, @NonNull Message label) Creates an instance of aInputRadioFormElementrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()buttons()Returns the value of thebuttonsrecord component.final booleanIndicates whether some other object is "equal to" this one.@NonNull InputTypegetType()final inthashCode()Returns a hash code value for this object.@NonNull Messagelabel()Returns the value of thelabelrecord component.@NonNull Stringname()Returns the value of thenamerecord component.booleanrequired()Returns the value of therequiredrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface InputFormElement
getTag
-
Constructor Details
-
InputRadioFormElement
-
-
Method Details
-
getType
- Specified by:
getTypein interfaceInputFormElement- Returns:
- Value of the type attribute of an input tag
-
builder
- Returns:
- Creates a
InputRadioFormElement.Builder.
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
name
-
required
-
buttons
-
label
-