Record Class ScenarioValidation
java.lang.Object
java.lang.Record
dev.itsharshxd.zentrix.api.scenario.ScenarioValidation
- Record Components:
valid- whether the combination can be used as-is, without any issue aboveScenarioValidation.Severity.INFOresolved- the scenarios that would actually run, in activation order: descending priority, then IDissues- everything validation found, in the order it was found
public record ScenarioValidation(boolean valid, @NotNull List<String> resolved, @NotNull List<ScenarioValidation.Issue> issues)
extends Record
The verdict on one combination of scenarios.
Validation is what makes combinations deterministic rather than surprising: it resolves dependencies, rejects conflicting pairs, drops scenarios whose required plugins are missing, and reports what it changed. Zentrix runs it before locking a match's scenarios in, and the management GUI runs it while an administrator edits a set.
- Since:
- 1.6.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordOne finding.static enumWhat validation found wrong.static enumHow badly an issue affects the combination. -
Constructor Summary
ConstructorsConstructorDescriptionScenarioValidation(boolean valid, @NotNull List<String> resolved, @NotNull List<ScenarioValidation.Issue> issues) Creates an instance of aScenarioValidationrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.@NotNull List<ScenarioValidation.Issue> errors()The findings that make the combination unusable.final inthashCode()Returns a hash code value for this object.booleanWhether anything at all was reported.@NotNull List<ScenarioValidation.Issue> issues()Returns the value of theissuesrecord component.resolved()Returns the value of theresolvedrecord component.final StringtoString()Returns a string representation of this record class.booleanvalid()Returns the value of thevalidrecord component.
-
Constructor Details
-
ScenarioValidation
public ScenarioValidation(boolean valid, @NotNull @NotNull List<String> resolved, @NotNull @NotNull List<ScenarioValidation.Issue> issues) Creates an instance of aScenarioValidationrecord class.
-
-
Method Details
-
hasIssues
public boolean hasIssues()Whether anything at all was reported. -
errors
The findings that make the combination unusable. -
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 '=='. -
valid
public boolean valid()Returns the value of thevalidrecord component.- Returns:
- the value of the
validrecord component
-
resolved
Returns the value of theresolvedrecord component.- Returns:
- the value of the
resolvedrecord component
-
issues
Returns the value of theissuesrecord component.- Returns:
- the value of the
issuesrecord component
-