Record Class CodeSample
java.lang.Object
java.lang.Record
io.micronaut.projectgen.core.utils.CodeSample
- Record Components:
idAttribute- HTML id attributeclassAttribute- HTML class attributecontent- content
-
Constructor Summary
ConstructorsConstructorDescriptionCodeSample(String key, String value) CodeSample(String idAttribute, String classAttribute, String content) Creates an instance of aCodeSamplerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclassAttributerecord component.content()Returns the value of thecontentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theidAttributerecord component.static List<CodeSample>final StringtoString()Returns a string representation of this record class.static StringtoValidHtmlId(String input)
-
Constructor Details
-
CodeSample
-
CodeSample
Creates an instance of aCodeSamplerecord class.- Parameters:
idAttribute- the value for theidAttributerecord componentclassAttribute- the value for theclassAttributerecord componentcontent- the value for thecontentrecord component
-
-
Method Details
-
of
-
toValidHtmlId
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
idAttribute
Returns the value of theidAttributerecord component.- Returns:
- the value of the
idAttributerecord component
-
classAttribute
Returns the value of theclassAttributerecord component.- Returns:
- the value of the
classAttributerecord component
-
content
Returns the value of thecontentrecord component.- Returns:
- the value of the
contentrecord component
-