public class ResponseElementInfo extends Object
限定符和类型 | 字段和说明 |
---|---|
protected Map<String,Object> |
edgePropertyMap |
protected String |
elementId
元素id
|
protected String |
fromId
边id对应的起始点
|
protected String |
pk
点id对应的主键
|
protected String |
toId
边id对应的终止点
|
protected String |
type
id对应的类型名
|
构造器和说明 |
---|
ResponseElementInfo() |
限定符和类型 | 方法和说明 |
---|---|
Map<String,Object> |
getEdgePropertyMap()
边属性集合
|
String |
getElementId()
元素id
|
String |
getFromId()
边id对应的起始点
|
String |
getPk()
点id对应的主键
|
String |
getToId()
边id对应的终止点
|
String |
getType()
id对应的类型名
|
void |
setEdgePropertyMap(Map<String,Object> edgePropertyMap) |
void |
setElementId(String elementId) |
void |
setFromId(String fromId) |
void |
setPk(String pk) |
void |
setToId(String toId) |
void |
setType(String type) |
String |
toString()
Returns a string representation of the object.
|
protected String elementId
protected String fromId
protected String pk
protected String toId
protected String type
public String getElementId()
public String getFromId()
public String getPk()
public String getToId()
public String getType()
public void setElementId(String elementId)
public void setFromId(String fromId)
public void setPk(String pk)
public void setToId(String toId)
public void setType(String type)
public String toString()
java.lang.Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())