Interface ElementId
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
Edge
,EdgeSeed
,Element
,ElementSeed
,Entity
,EntitySeed
,LazyEdge
,LazyEntity
public interface ElementId extends Serializable
AnElementId
is an interface describing the core methods that are required in order to identify anElement
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ElementId.Matches
Enumerated type to denote which component of anElement
matches an input parameter.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default String
getClassName()
boolean
isEqual(ElementId that)
ElementId.Matches
isRelated(ElementId that)
default void
setClassName(String className)
-
-
-
Method Detail
-
isRelated
ElementId.Matches isRelated(ElementId that)
-
isEqual
boolean isEqual(ElementId that)
-
getClassName
default String getClassName()
-
setClassName
default void setClassName(String className)
-
-