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.SerializableA 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 classPropertyShapeConstraint.LessThanSee https://www.w3.org/TR/shacl/#LessThanConstraintComponentstatic classPropertyShapeConstraint.LessThanOrEqualsSee https://www.w3.org/TR/shacl/#LessThanOrEqualsConstraintComponentstatic classPropertyShapeConstraint.MaxCountThe maximum cardinality.static classPropertyShapeConstraint.MinCountThe minimum cardinality.static interfacePropertyShapeConstraint.PartialVisitor<R>static classPropertyShapeConstraint.QualifiedValueShapeSee https://www.w3.org/TR/shacl/#QualifiedValueShapeConstraintComponentstatic classPropertyShapeConstraint.UniqueLangSee https://www.w3.org/TR/shacl/#UniqueLangConstraintComponentstatic interfacePropertyShapeConstraint.Visitor<R>
-
Field Summary
Fields Modifier and Type Field Description static NameFIELD_NAME_LESS_THANstatic NameFIELD_NAME_LESS_THAN_OR_EQUALSstatic NameFIELD_NAME_MAX_COUNTstatic NameFIELD_NAME_MIN_COUNTstatic NameFIELD_NAME_QUALIFIED_VALUE_SHAPEstatic NameFIELD_NAME_UNIQUE_LANGstatic NameTYPE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(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)
-
-