示例#1
0
 def __init__(self,
              name: IRI,
              code: Optional[STRING] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.name = name
     self.code = code
示例#2
0
 def __init__(self,
              nodeKind: Optional[NodeType] = None,
              datatype: Optional[IRI] = None,
              mininclusive: Optional[numericLiteral] = None,
              minexclusive: Optional[numericLiteral] = None,
              maxinclusive: Optional[numericLiteral] = None,
              maxexclusive: Optional[numericLiteral] = None,
              totaldigits: Optional[INTEGER] = None,
              fractiondigits: Optional[INTEGER] = None,
              length: Optional[INTEGER] = None,
              minlength: Optional[INTEGER] = None,
              maxlength: Optional[INTEGER] = None,
              pattern: Optional[STRING] = None,
              values: Optional[List[valueSetValue]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.nodeKind = nodeKind
     self.datatype = datatype
     self.mininclusive = mininclusive
     self.minexclusive = minexclusive
     self.maxinclusive = maxinclusive
     self.maxexclusive = maxexclusive
     self.totaldigits = totaldigits
     self.fractiondigits = fractiondigits
     self.length = length
     self.minlength = minlength
     self.maxlength = maxlength
     self.pattern = pattern
     self.values = values
示例#3
0
 def __init__(self,
              stem: Union[IRI, Wildcard],
              exclusions: Optional[List[Union[objectValue, Stem]]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.stem = stem
     self.exclusions = exclusions
示例#4
0
 def __init__(self,
              length: Optional[INTEGER] = None,
              minlength: Optional[INTEGER] = None,
              maxlength: Optional[INTEGER] = None,
              pattern: Optional[STRING] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.length = length
     self.minlength = minlength
     self.maxlength = maxlength
     self.pattern = pattern
示例#5
0
 def __init__(self,
              prefixes: Optional[Dict[PREFIX, IRI]] = None,
              base: Optional[IRI] = None,
              startActs: Optional[List[SemAct]] = None,
              start: Optional[shapeExpr] = None,
              shapes: Optional[Dict[shapeLabel, shapeExpr]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.prefixes = prefixes
     self.base = base
     self.startActs = startActs
     self.start = start
     self.shapes = shapes
示例#6
0
 def __init__(self,
              expressions: List[tripleExprT],
              min: Optional[INTEGER] = None,
              max: Optional[Union[INTEGER, STAR]] = None,
              semActs: Optional[List[SemAct]] = None,
              annotations: Optional[List[Annotation]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.expressions = expressions
     self.min = min
     self.max = max
     self.semActs = semActs
     self.annotations = annotations
示例#7
0
 def __init__(self,
              virtual: Optional[BOOL] = None,
              closed: Optional[BOOL] = None,
              extra: Optional[List[IRI]] = None,
              expression: Optional[tripleExpr] = None,
              inherit: Optional[List[shapeLabel]] = None,
              semActs: Optional[List[SemAct]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.virtual = virtual
     self.closed = closed
     self.extra = extra
     self.expression = expression
     self.inherit = inherit
     self.semActs = semActs
示例#8
0
 def __init__(self,
              mininclusive: Optional[numericLiteral] = None,
              minexclusive: Optional[numericLiteral] = None,
              maxinclusive: Optional[numericLiteral] = None,
              maxexclusive: Optional[numericLiteral] = None,
              totaldigits: Optional[INTEGER] = None,
              fractiondigits: Optional[INTEGER] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.mininclusive = mininclusive
     self.minexclusive = minexclusive
     self.maxinclusive = maxinclusive
     self.maxexclusive = maxexclusive
     self.totaldigits = totaldigits
     self.fractiondigits = fractiondigits
示例#9
0
 def __init__(self,
              predicate: IRI,
              inverse: Optional[BOOL] = None,
              negated: Optional[BOOL] = None,
              valueExpr: Optional[shapeExprT] = None,
              min: Optional[INTEGER] = None,
              max: Optional[Union[INTEGER, STAR]] = None,
              semActs: Optional[List[SemAct]] = None,
              annotations: Optional[List[Annotation]] = None,
              **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.predicate = predicate
     self.inverse = inverse
     self.negated = negated
     self.valueExpr = valueExpr
     self.min = min
     self.max = max
     self.semActs = semActs
     self.annotations = annotations
示例#10
0
 def __init__(self, shapeExprs: List[shapeExprT], **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.shapeExprs = shapeExprs
示例#11
0
 def __init__(self, shapeExpr: shapeExprT, **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.shapeExpr = shapeExpr
示例#12
0
 def __init__(self, reference: IRI, **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.reference = reference
示例#13
0
 def __init__(self, **_: Dict[str, object]):
     JSGObject.__init__(self)
示例#14
0
 def __init__(self, predicate: IRI, object: objectValue, **_: Dict[str,
                                                                   object]):
     JSGObject.__init__(self)
     self.predicate = predicate
     self.object = object
示例#15
0
 def __init__(self, stem: IRI, **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.stem = stem
示例#16
0
 def __init__(self, include: shapeLabel, **_: Dict[str, object]):
     JSGObject.__init__(self)
     self.include = include