Package hydra.ext.org.w3.shacl.model
Class PropertyShapeConstraint
- java.lang.Object
-
- hydra.ext.org.w3.shacl.model.PropertyShapeConstraint
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
PropertyShapeConstraint.LessThan
,PropertyShapeConstraint.LessThanOrEquals
,PropertyShapeConstraint.MaxCount
,PropertyShapeConstraint.MinCount
,PropertyShapeConstraint.QualifiedValueShape
,PropertyShapeConstraint.UniqueLang
public abstract class PropertyShapeConstraint extends java.lang.Object implements java.io.Serializable
A number of constraint parameters which are specific to property shapes, and cannot be applied to node shapes- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PropertyShapeConstraint.LessThan
See https://www.w3.org/TR/shacl/#LessThanConstraintComponentstatic class
PropertyShapeConstraint.LessThanOrEquals
See https://www.w3.org/TR/shacl/#LessThanOrEqualsConstraintComponentstatic class
PropertyShapeConstraint.MaxCount
The maximum cardinality.static class
PropertyShapeConstraint.MinCount
The minimum cardinality.static interface
PropertyShapeConstraint.PartialVisitor<R>
static class
PropertyShapeConstraint.QualifiedValueShape
See https://www.w3.org/TR/shacl/#QualifiedValueShapeConstraintComponentstatic class
PropertyShapeConstraint.UniqueLang
See https://www.w3.org/TR/shacl/#UniqueLangConstraintComponentstatic interface
PropertyShapeConstraint.Visitor<R>
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_LESS_THAN
static Name
FIELD_NAME_LESS_THAN_OR_EQUALS
static Name
FIELD_NAME_MAX_COUNT
static Name
FIELD_NAME_MIN_COUNT
static Name
FIELD_NAME_QUALIFIED_VALUE_SHAPE
static Name
FIELD_NAME_UNIQUE_LANG
static Name
TYPE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> R
accept(PropertyShapeConstraint.Visitor<R> visitor)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_LESS_THAN
public static final Name FIELD_NAME_LESS_THAN
-
FIELD_NAME_LESS_THAN_OR_EQUALS
public static final Name FIELD_NAME_LESS_THAN_OR_EQUALS
-
FIELD_NAME_MAX_COUNT
public static final Name FIELD_NAME_MAX_COUNT
-
FIELD_NAME_MIN_COUNT
public static final Name FIELD_NAME_MIN_COUNT
-
FIELD_NAME_UNIQUE_LANG
public static final Name FIELD_NAME_UNIQUE_LANG
-
FIELD_NAME_QUALIFIED_VALUE_SHAPE
public static final Name FIELD_NAME_QUALIFIED_VALUE_SHAPE
-
-
Method Detail
-
accept
public abstract <R> R accept(PropertyShapeConstraint.Visitor<R> visitor)
-
-