java.lang.Object
java.lang.Record
org.aya.pretty.doc.Style.ColorName
- All Implemented Interfaces:
Serializable,Style
- Enclosing interface:
Style
public static record Style.ColorName(@NotNull String colorName, boolean background)
extends Record
implements Style
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.aya.pretty.doc.Style
Style.Attr, Style.ColorHex, Style.ColorName, Style.CustomStyle, Style.Preset -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns the value of thebackgroundrecord component.@NotNull StringReturns the value of thecolorNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ColorName
Creates an instance of aColorNamerecord class.- Parameters:
colorName- the value for thecolorNamerecord componentbackground- the value for thebackgroundrecord component
-
-
Method Details
-
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 '=='. -
colorName
Returns the value of thecolorNamerecord component.- Returns:
- the value of the
colorNamerecord component
-
background
public boolean background()Returns the value of thebackgroundrecord component.- Returns:
- the value of the
backgroundrecord component
-