com.vladsch.flexmark.util.options.ParsedOptionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package com.vladsch.flexmark.util.options;
public enum ParsedOptionStatus {
VALID(0),
IGNORED(1),
WEAK_WARNING(2),
WARNING(3),
ERROR(4);
final private int level;
ParsedOptionStatus(int level) {
this.level = level;
}
ParsedOptionStatus escalate(ParsedOptionStatus other) {
return level < other.level ? other : this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy