com.networknt.schema.walk.WalkFlow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-validator Show documentation
Show all versions of json-schema-validator Show documentation
A json schema validator that supports draft v4, v6, v7, v2019-09 and v2020-12
package com.networknt.schema.walk;
public enum WalkFlow {
SKIP("SkipWalk", "Skip only the walk method, but continue invoking the other listeners"),
ABORT("Abort", "Aborts all the walk listeners and walk method itself"),
CONTINUE("ContinueToWalk", "continue to invoke the walk method and other listeners");
private String name;
private String description;
WalkFlow(String name, String description) {
this.name = name;
this.description = description;
}
public String getName() {
return this.name;
}
public String getDescription() {
return this.description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy