Class DInterleavePattern
- java.lang.Object
-
- org.kohsuke.rngom.rngparser.digested.DPattern
-
- org.kohsuke.rngom.rngparser.digested.DContainerPattern
-
- org.kohsuke.rngom.rngparser.digested.DInterleavePattern
-
- All Implemented Interfaces:
Iterable<DPattern>
,ParsedPattern
public class DInterleavePattern extends DContainerPattern
-
-
Constructor Summary
Constructors Constructor Description DInterleavePattern()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
accept(DPatternVisitor visitor)
boolean
isNullable()
Returns true if this pattern is nullable.-
Methods inherited from class org.kohsuke.rngom.rngparser.digested.DContainerPattern
countChildren, firstChild, iterator, lastChild
-
Methods inherited from class org.kohsuke.rngom.rngparser.digested.DPattern
createParseable, getAnnotation, getLocation, getNext, isAttribute, isElement, setNext
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
isNullable
public boolean isNullable()
Description copied from class:DPattern
Returns true if this pattern is nullable. A nullable pattern is a pattern that can match the empty sequence.- Specified by:
isNullable
in classDPattern
-
accept
public Object accept(DPatternVisitor visitor)
-
-