blob: 874b5eb1ce0e5de18c4ecfd4900aa7f98cb6b88c [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
tome3489412014-08-29 02:30:38 -070016package org.onlab.graph;
17
18import java.util.Objects;
19
tomeadbb462014-09-07 16:10:19 -070020import static com.google.common.base.MoreObjects.toStringHelper;
Andrey Komarov2398d962016-09-26 15:11:23 +030021import static org.onlab.graph.GraphTest.W1;
tom144de692014-08-29 11:38:44 -070022
tome3489412014-08-29 02:30:38 -070023/**
24 * Test edge.
25 */
26public class TestEdge extends AbstractEdge<TestVertex> {
27
Andrey Komarov2398d962016-09-26 15:11:23 +030028 private final Weight weight;
tome3489412014-08-29 02:30:38 -070029
30 /**
Andrey Komarov2398d962016-09-26 15:11:23 +030031 * Creates a new edge between the specified source and destination vertexes
32 * with the given weight.
tome3489412014-08-29 02:30:38 -070033 *
34 * @param src source vertex
35 * @param dst destination vertex
36 * @param weight edge weight
37 */
Andrey Komarov2398d962016-09-26 15:11:23 +030038 public TestEdge(TestVertex src, TestVertex dst, Weight weight) {
tome3489412014-08-29 02:30:38 -070039 super(src, dst);
40 this.weight = weight;
41 }
42
43 /**
Andrey Komarov2398d962016-09-26 15:11:23 +030044 * Creates a new edge between the specified source and destination vertexes
45 * with the default weight.
46 *
47 * @param src source vertex
48 * @param dst destination vertext
49 */
50 public TestEdge(TestVertex src, TestVertex dst) {
51 this(src, dst, W1);
52 }
53
54 /**
tome3489412014-08-29 02:30:38 -070055 * Returns the edge weight.
56 *
57 * @return edge weight
58 */
Andrey Komarov2398d962016-09-26 15:11:23 +030059 public Weight weight() {
tome3489412014-08-29 02:30:38 -070060 return weight;
61 }
62
63 @Override
64 public int hashCode() {
65 return 31 * super.hashCode() + Objects.hash(weight);
66 }
67
68 @Override
69 public boolean equals(Object obj) {
tomfc9a4ff2014-09-22 18:22:47 -070070 if (this == obj) {
71 return true;
72 }
tome3489412014-08-29 02:30:38 -070073 if (obj instanceof TestEdge) {
74 final TestEdge other = (TestEdge) obj;
75 return super.equals(obj) && Objects.equals(this.weight, other.weight);
76 }
77 return false;
78 }
tom144de692014-08-29 11:38:44 -070079
80 @Override
81 public String toString() {
82 return toStringHelper(this).add("src", src()).add("dst", dst()).
83 add("weight", weight).toString();
84 }
85
tome3489412014-08-29 02:30:38 -070086}