Home | History | Annotate | Download | only in grapher

Lines Matching refs:NodeType

39   public enum NodeType {
48 private final NodeType nodeType;
50 private NodeId(Key<?> key, NodeType nodeType) {
52 this.nodeType = nodeType;
56 return new NodeId(key, NodeType.TYPE);
60 return new NodeId(key, NodeType.INSTANCE);
68 return Objects.hashCode(key, nodeType);
76 return Objects.equal(key, other.key) && Objects.equal(nodeType, other.nodeType);
80 return "NodeId{nodeType=" + nodeType + " key=" + key + "}";