93 lines
2.3 KiB
Java
93 lines
2.3 KiB
Java
import java.io.Serializable;
|
|
|
|
public class Vertex implements Serializable {
|
|
private SequenceType type;
|
|
private Integer vertexLabel;
|
|
private Integer sequence;
|
|
private Integer occupancy;
|
|
|
|
public Vertex(Integer vertexLabel) {
|
|
this.vertexLabel = vertexLabel;
|
|
}
|
|
public Vertex(String vertexLabel) {
|
|
this.vertexLabel = Integer.parseInt((vertexLabel));
|
|
}
|
|
|
|
public Vertex(SequenceType type, Integer sequence, Integer occupancy, Integer vertexLabel) {
|
|
this.type = type;
|
|
this.vertexLabel = vertexLabel;
|
|
this.sequence = sequence;
|
|
this.occupancy = occupancy;
|
|
}
|
|
|
|
|
|
public SequenceType getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = SequenceType.valueOf(type);
|
|
}
|
|
|
|
public Integer getVertexLabel() {
|
|
return vertexLabel;
|
|
}
|
|
|
|
public void setVertexLabel(String label) {
|
|
this.vertexLabel = Integer.parseInt(label);
|
|
}
|
|
|
|
public Integer getSequence() {
|
|
|
|
return sequence;
|
|
}
|
|
|
|
public void setSequence(String sequence) {
|
|
this.sequence = Integer.parseInt(sequence);
|
|
}
|
|
|
|
public Integer getOccupancy() {
|
|
return occupancy;
|
|
}
|
|
|
|
public void setOccupancy(String occupancy) {
|
|
this.occupancy = Integer.parseInt(occupancy);
|
|
}
|
|
|
|
@Override //adapted from JGraphT example code
|
|
public int hashCode()
|
|
{
|
|
return (sequence == null) ? 0 : sequence.hashCode();
|
|
}
|
|
|
|
@Override //adapted from JGraphT example code
|
|
public boolean equals(Object obj)
|
|
{
|
|
if (this == obj)
|
|
return true;
|
|
if (obj == null)
|
|
return false;
|
|
if (getClass() != obj.getClass())
|
|
return false;
|
|
Vertex other = (Vertex) obj;
|
|
if (sequence == null) {
|
|
return other.sequence == null;
|
|
} else {
|
|
return sequence.equals(other.sequence);
|
|
}
|
|
}
|
|
|
|
|
|
@Override //adapted from JGraphT example code
|
|
public String toString()
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("(").append(vertexLabel)
|
|
.append(", Type: ").append(type.name())
|
|
.append(", Sequence: ").append(sequence)
|
|
.append(", Occupancy: ").append(occupancy).append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
}
|