Record Class Moderation.Result
java.lang.Object
java.lang.Record
io.github.stefanbratanov.jvm.openai.Moderation.Result
- Enclosing class:
- Moderation
public static record Moderation.Result(boolean flagged, Moderation.Result.Categories categories, Moderation.Result.CategoryScores categoryScores)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
static final record
-
Constructor Summary
ConstructorsConstructorDescriptionResult
(boolean flagged, Moderation.Result.Categories categories, Moderation.Result.CategoryScores categoryScores) Creates an instance of aResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecategories
record component.Returns the value of thecategoryScores
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
flagged()
Returns the value of theflagged
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Result
public Result(boolean flagged, Moderation.Result.Categories categories, Moderation.Result.CategoryScores categoryScores) Creates an instance of aResult
record class.- Parameters:
flagged
- the value for theflagged
record componentcategories
- the value for thecategories
record componentcategoryScores
- the value for thecategoryScores
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
flagged
public boolean flagged()Returns the value of theflagged
record component.- Returns:
- the value of the
flagged
record component
-
categories
Returns the value of thecategories
record component.- Returns:
- the value of the
categories
record component
-
categoryScores
Returns the value of thecategoryScores
record component.- Returns:
- the value of the
categoryScores
record component
-