org.unlaxer.RecursiveMode Maven / Gradle / Ivy
package org.unlaxer;
public enum RecursiveMode{
containsRoot,childrenOnly;
public boolean isContainsRoot(){
return this == RecursiveMode.containsRoot;
}
public boolean isChildrenOnly(){
return this == RecursiveMode.childrenOnly;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy