![JAR search and dependency download from the Maven repository](/logo.png)
org.kohsuke.rngom.digested.DOptionalPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rngom Show documentation
Show all versions of rngom Show documentation
RNGOM is an open-source Java library for parsing RELAX NG grammars.
The newest version!
package org.kohsuke.rngom.digested;
/**
* @author Kohsuke Kawaguchi ([email protected])
*/
public class DOptionalPattern extends DUnaryPattern {
public boolean isNullable() {
return true;
}
public Object accept( DPatternVisitor visitor ) {
return visitor.onOptional(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy