Package hydra.pg.model
Class ElementKind
- java.lang.Object
-
- hydra.pg.model.ElementKind
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ElementKind.Edge
,ElementKind.Vertex
public abstract class ElementKind extends java.lang.Object implements java.io.Serializable
The kind of an element: vertex or edge- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ElementKind.Edge
static interface
ElementKind.PartialVisitor<R>
static class
ElementKind.Vertex
static interface
ElementKind.Visitor<R>
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_EDGE
static Name
FIELD_NAME_VERTEX
static Name
TYPE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract <R> R
accept(ElementKind.Visitor<R> visitor)
-
-
-
Method Detail
-
accept
public abstract <R> R accept(ElementKind.Visitor<R> visitor)
-
-