Package org.eclipse.jetty.http
Record Class ComplianceViolation.Event
java.lang.Object
java.lang.Record
org.eclipse.jetty.http.ComplianceViolation.Event
- Enclosing interface:
- ComplianceViolation
public static record ComplianceViolation.Event(ComplianceViolation.Mode mode, ComplianceViolation violation, String details)
extends Record
-
Constructor Summary
ConstructorDescriptionEvent
(ComplianceViolation.Mode mode, ComplianceViolation violation, String details) Creates an instance of aEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptiondetails()
Returns the value of thedetails
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.mode()
Returns the value of themode
record component.toString()
Returns a string representation of this record class.Returns the value of theviolation
record component.
-
Constructor Details
-
Event
Creates an instance of aEvent
record class.- Parameters:
mode
- the value for themode
record componentviolation
- the value for theviolation
record componentdetails
- the value for thedetails
record 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 withObjects::equals(Object,Object)
. -
mode
Returns the value of themode
record component.- Returns:
- the value of the
mode
record component
-
violation
Returns the value of theviolation
record component.- Returns:
- the value of the
violation
record component
-
details
Returns the value of thedetails
record component.- Returns:
- the value of the
details
record component
-