Record Class InputUrlFormElement
java.lang.Object
java.lang.Record
io.micronaut.views.fields.elements.InputUrlFormElement
- 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 documentplaceholder
- 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.maxLength
- The maximum string length that the user can enter into the text input.minLength
- The minimum string length that the user can enter into the text input.pattern
- The pattern attribute, when specified, is a regular expression that the input's value must match for the value to pass constraint validation.size
- The size attribute is a numeric value indicating how many characters wide the input field should be.value
- input url valuelabel
- the input labelerrors
- errors associated with this input
- All Implemented Interfaces:
FormElementAttributes
,GlobalAttributes
,InputFormElement
,InputStringFormElement
,FormElement
@Introspected(builder=@IntrospectionBuilder(builderClass=Builder.class))
public record InputUrlFormElement(@NonNull String name, @Nullable String id, @Nullable String placeholder, boolean required, boolean readOnly, @Nullable Number maxLength, @Nullable Number minLength, @Nullable String pattern, @Nullable Integer size, @Nullable String value, @Nullable Message label, @NonNull List<Message> errors)
extends Record
implements InputFormElement, GlobalAttributes, FormElementAttributes, InputStringFormElement
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Input URL Builder. -
Constructor Summary
ConstructorDescriptionInputUrlFormElement
(@NonNull String name, @Nullable String id, @Nullable String placeholder, boolean required, boolean readOnly, @Nullable Number maxLength, @Nullable Number minLength, @Nullable String pattern, @Nullable Integer size, @Nullable String value, @Nullable Message label, @NonNull List<Message> errors) Creates an instance of aInputUrlFormElement
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull InputUrlFormElement.Builder
builder()
final boolean
Indicates whether some other object is "equal to" this one.errors()
Returns the value of theerrors
record component.@NonNull InputType
getType()
final int
hashCode()
Returns a hash code value for this object.@Nullable String
id()
Returns the value of theid
record component.@Nullable Message
label()
Returns the value of thelabel
record component.@Nullable Number
Returns the value of themaxLength
record component.@Nullable Number
Returns the value of theminLength
record component.@NonNull String
name()
Returns the value of thename
record component.@Nullable String
pattern()
Returns the value of thepattern
record component.@Nullable String
Returns the value of theplaceholder
record component.boolean
readOnly()
Returns the value of thereadOnly
record component.boolean
required()
Returns the value of therequired
record component.@Nullable Integer
size()
Returns the value of thesize
record component.final String
toString()
Returns a string representation of this record class.@Nullable String
value()
Returns the value of thevalue
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.micronaut.views.fields.elements.FormElementAttributes
hasErrors
Methods inherited from interface io.micronaut.views.fields.elements.InputFormElement
getTag
-
Constructor Details
-
InputUrlFormElement
public InputUrlFormElement(@NonNull @NonNull String name, @Nullable @Nullable String id, @Nullable @Nullable String placeholder, boolean required, boolean readOnly, @Nullable @Nullable Number maxLength, @Nullable @Nullable Number minLength, @Nullable @Nullable String pattern, @Nullable @Nullable Integer size, @Nullable @Nullable String value, @Nullable @Nullable Message label, @NonNull @NonNull List<Message> errors) Creates an instance of aInputUrlFormElement
record class.- Parameters:
name
- the value for thename
record componentid
- the value for theid
record componentplaceholder
- the value for theplaceholder
record componentrequired
- the value for therequired
record componentreadOnly
- the value for thereadOnly
record componentmaxLength
- the value for themaxLength
record componentminLength
- the value for theminLength
record componentpattern
- the value for thepattern
record componentsize
- the value for thesize
record componentvalue
- the value for thevalue
record componentlabel
- the value for thelabel
record componenterrors
- the value for theerrors
record component
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceInputFormElement
- Returns:
- Value of the type attribute of an input tag
-
builder
- Returns:
- the Input Url 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 thename
record component.- Specified by:
name
in interfaceFormElementAttributes
- Specified by:
name
in interfaceInputStringFormElement
- Returns:
- the value of the
name
record component
-
id
Returns the value of theid
record component.- Specified by:
id
in interfaceGlobalAttributes
- Specified by:
id
in interfaceInputStringFormElement
- Returns:
- the value of the
id
record component
-
placeholder
Returns the value of theplaceholder
record component.- Specified by:
placeholder
in interfaceInputStringFormElement
- Returns:
- the value of the
placeholder
record component
-
required
public boolean required()Returns the value of therequired
record component.- Specified by:
required
in interfaceGlobalAttributes
- Specified by:
required
in interfaceInputStringFormElement
- Returns:
- the value of the
required
record component
-
readOnly
public boolean readOnly()Returns the value of thereadOnly
record component.- Specified by:
readOnly
in interfaceInputStringFormElement
- Returns:
- the value of the
readOnly
record component
-
maxLength
Returns the value of themaxLength
record component.- Specified by:
maxLength
in interfaceInputStringFormElement
- Returns:
- the value of the
maxLength
record component
-
minLength
Returns the value of theminLength
record component.- Specified by:
minLength
in interfaceInputStringFormElement
- Returns:
- the value of the
minLength
record component
-
pattern
Returns the value of thepattern
record component.- Specified by:
pattern
in interfaceInputStringFormElement
- Returns:
- the value of the
pattern
record component
-
size
Returns the value of thesize
record component.- Specified by:
size
in interfaceInputStringFormElement
- Returns:
- the value of the
size
record component
-
value
Returns the value of thevalue
record component.- Specified by:
value
in interfaceInputStringFormElement
- Returns:
- the value of the
value
record component
-
label
Returns the value of thelabel
record component.- Specified by:
label
in interfaceFormElementAttributes
- Specified by:
label
in interfaceInputStringFormElement
- Returns:
- the value of the
label
record component
-
errors
Returns the value of theerrors
record component.- Specified by:
errors
in interfaceFormElementAttributes
- Specified by:
errors
in interfaceInputStringFormElement
- Returns:
- the value of the
errors
record component
-