Record Class ResponsiveBuilder.Variant

java.lang.Object
java.lang.Record
cloud.opencode.base.image.responsive.ResponsiveBuilder.Variant
Record Components:
width - the target width in pixels (must be positive) | 目标宽度(像素,必须为正数)
height - the target height in pixels (must be positive) | 目标高度(像素,必须为正数)
name - the variant name used in output filenames | 用于输出文件名的变体名称
Enclosing class:
ResponsiveBuilder

public static record ResponsiveBuilder.Variant(int width, int height, String name) extends Record
Variant configuration describing a target image size and its name. 变体配置,描述目标图片尺寸及其名称。
Since:
JDK 25, opencode-base-image V2.0.0
Author:
Leon Soo www.LeonSoo.com
  • Constructor Summary

    Constructors
    Constructor
    Description
    Variant(int width, int height, String name)
    Compact constructor with validation.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    Returns the value of the name record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Variant

      public Variant(int width, int height, String name)
      Compact constructor with validation. 带验证的紧凑构造器。
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • width

      public int width()
      Returns the value of the width record component.
      Returns:
      the value of the width record component
    • height

      public int height()
      Returns the value of the height record component.
      Returns:
      the value of the height record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component