Package hydra.error.pg
Class InvalidVertexError
- java.lang.Object
-
- hydra.error.pg.InvalidVertexError
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InvalidVertexError>
- Direct Known Subclasses:
InvalidVertexError.Id,InvalidVertexError.Label,InvalidVertexError.Property
public abstract class InvalidVertexError extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<InvalidVertexError>
An error indicating that a vertex is invalid- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInvalidVertexError.IdThe vertex id value is invalidstatic classInvalidVertexError.LabelThe vertex label does not exist in the schemastatic interfaceInvalidVertexError.PartialVisitor<R>Partial visitor overInvalidVertexErrorwith a defaultInvalidVertexError.PartialVisitor.otherwise(hydra.error.pg.InvalidVertexError)branch.static classInvalidVertexError.PropertyA property of the vertex is invalidstatic interfaceInvalidVertexError.Visitor<R>Visitor overInvalidVertexError.
-
Field Summary
Fields Modifier and Type Field Description static NameIDName of thehydra.error.pg.InvalidVertexError.idfield.static NameLABELName of thehydra.error.pg.InvalidVertexError.labelfield.static NamePROPERTYName of thehydra.error.pg.InvalidVertexError.propertyfield.static NameTYPE_Name of thehydra.error.pg.InvalidVertexErrortype.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> Raccept(InvalidVertexError.Visitor<R> visitor)Dispatch tovisitor.abstract inthydraOrdinal()
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
Name of thehydra.error.pg.InvalidVertexErrortype.
-
ID
public static final Name ID
Name of thehydra.error.pg.InvalidVertexError.idfield.
-
LABEL
public static final Name LABEL
Name of thehydra.error.pg.InvalidVertexError.labelfield.
-
PROPERTY
public static final Name PROPERTY
Name of thehydra.error.pg.InvalidVertexError.propertyfield.
-
-
Method Detail
-
accept
public abstract <R> R accept(InvalidVertexError.Visitor<R> visitor)
Dispatch tovisitor.
-
hydraOrdinal
public abstract int hydraOrdinal()
-
-