Output.Tags (java-analyzer 1.0-SNAPSHOT API)
- Enclosing class:
Output
public static record Output.Tags(List<String> tags) extends Record
-
Constructor Summary
Constructors
Creates an instance of a
Tagsrecord class. -
Method Summary
-
Constructor Details
-
Tags
Creates an instance of a
Tagsrecord class.- Parameters:
tags- the value for thetagsrecord component
-
-
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.
-
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
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. All components in this record class are compared with
Objects::equals(Object,Object).
-