Package com.sun.tools.rngom.digested
Class DValuePattern
- java.lang.Object
-
- com.sun.tools.rngom.digested.DPattern
-
- com.sun.tools.rngom.digested.DValuePattern
-
- All Implemented Interfaces:
ParsedPattern
public class DValuePattern extends DPattern
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectaccept(DPatternVisitor visitor)ContextgetContext()StringgetDatatypeLibrary()StringgetNs()StringgetType()StringgetValue()booleanisNullable()Returns true if this pattern is nullable.-
Methods inherited from class com.sun.tools.rngom.digested.DPattern
createParseable, getAnnotation, getLocation, isAttribute, isElement
-
-
-
-
Method Detail
-
getDatatypeLibrary
public String getDatatypeLibrary()
-
getType
public String getType()
-
getValue
public String getValue()
-
getContext
public Context getContext()
-
getNs
public String getNs()
-
isNullable
public boolean isNullable()
Description copied from class:DPatternReturns true if this pattern is nullable. A nullable pattern is a pattern that can match the empty sequence.- Specified by:
isNullablein classDPattern
-
accept
public Object accept(DPatternVisitor visitor)
-
-