All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.networknt.schema.walk.WalkFlow Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
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