java.lang.Object
java.lang.Record
org.aya.pretty.doc.Style.ColorHex
- All Implemented Interfaces:
Serializable,Style
- Enclosing interface:
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
ConstructorsConstructorDescriptionColorHex(int color, boolean background) Creates an instance of aColorHexrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns the value of thebackgroundrecord component.intcolor()Returns the value of thecolorrecord 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
-
ColorHex
public ColorHex(int color, boolean background) Creates an instance of aColorHexrecord class.- Parameters:
color- the value for thecolorrecord 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. All components in this record class are compared with '=='. -
color
public int color()Returns the value of thecolorrecord component.- Returns:
- the value of the
colorrecord component
-
background
public boolean background()Returns the value of thebackgroundrecord component.- Returns:
- the value of the
backgroundrecord component
-