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,java.lang.Comparable<PropertyShapeConstraint>
- 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, java.lang.Comparable<PropertyShapeConstraint>
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 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 NameLESS_THANstatic NameLESS_THAN_OR_EQUALSstatic NameMAX_COUNTstatic NameMIN_COUNTstatic NameQUALIFIED_VALUE_SHAPEstatic NameTYPE_static NameUNIQUE_LANG
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(PropertyShapeConstraint.Visitor<R> visitor)
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
-
LESS_THAN
public static final Name LESS_THAN
-
LESS_THAN_OR_EQUALS
public static final Name LESS_THAN_OR_EQUALS
-
MAX_COUNT
public static final Name MAX_COUNT
-
MIN_COUNT
public static final Name MIN_COUNT
-
UNIQUE_LANG
public static final Name UNIQUE_LANG
-
QUALIFIED_VALUE_SHAPE
public static final Name QUALIFIED_VALUE_SHAPE
-
-
Method Detail
-
accept
public abstract <R> R accept(PropertyShapeConstraint.Visitor<R> visitor)
-
-