public LineInfo(String nodeID1, String nodeID2) {
this.nodeID1 = nodeID1;
this.nodeID2 = nodeID2;
- lineAttributes = new HashMap<String, String>();
+ lineAttributes = new HashMap<>();
}
public LineInfo clone() {
public List<String> getAttributeKeys() {
Set<String> keySet = lineAttributes.keySet();
- List<String> keys = new ArrayList<String>(keySet.size());
+ List<String> keys = new ArrayList<>(keySet.size());
Iterator<String> iter = keySet.iterator();
while (iter.hasNext()) {
public List<String> getAttributeInternalKeys() {
Set<String> keySet = lineAttributes.keySet();
- List<String> internalKeys = new ArrayList<String>();
+ List<String> internalKeys = new ArrayList<>();
Iterator<String> iter = keySet.iterator();
while (iter.hasNext()) {
public ColorProperties(NovaMap map) {
this.map = map;
- colorProperties = new HashMap<String, Object>();
+ colorProperties = new HashMap<>();
}
public void setColor(String type, String color) {
public Node(NovaMap map) {
this.map = map;
nodeCollection = new NodeCollection();
- nodeIDSet = new HashSet<String>();
- selectionList = new ArrayList<String>();
+ nodeIDSet = new HashSet<>();
+ selectionList = new ArrayList<>();
}
public NodeInfo addNode(NodeParam nodeParam) {
public Set<Integer> getUniqueNumberT1(String currentYearMonth) {
HashMap<String,NodeInfo> hashMap = this.nodeCollection.getNodeCollection();
Set set = hashMap.entrySet();
- Set<Integer> numberT1Set = new TreeSet<Integer>();
+ Set<Integer> numberT1Set = new TreeSet<>();
for (Iterator iterator = set.iterator(); iterator.hasNext();) {
Map.Entry entry = (Map.Entry) iterator.next();
}
if (existNodeInfo == null) {
- existNodeInfo = new ArrayList<NodeInfo>();
+ existNodeInfo = new ArrayList<>();
}
existNodeInfo.add(nodeInfo);
private HashMap<String,NodeInfo> nodeCollection;
public NodeCollection() {
- selectedNode = new HashSet<String>();
- nodeCollection = new HashMap<String,NodeInfo>(20000);
+ selectedNode = new HashSet<>();
+ nodeCollection = new HashMap<>(20000);
}
public void addSelectedNode(String nodeID) {
public NodeInfo(String nodeID) {
this.nodeID = nodeID;
- lineIDS = new ArrayList<String>();
- nodeAttributes = new TreeMap<String, String>();
+ lineIDS = new ArrayList<>();
+ nodeAttributes = new TreeMap<>();
geoCoordinate = new GeoCoordinate();
}
}
public List<String> cloneLineIDS() {
- List<String> lineIDS = new ArrayList<String>();
+ List<String> lineIDS = new ArrayList<>();
for (String lineID : this.lineIDS) {
lineIDS.add(lineID);
}
public String getAttribute(String key) {
- String value = nodeAttributes.get(key);
- return value;
+ return nodeAttributes.get(key);
}
public void initializeAttributes(Map<String, String> nodeAttributes) {
public List<String> getAttributeKeys() {
Set<String> keySet = nodeAttributes.keySet();
- List<String> keys = new ArrayList<String>(keySet.size());
+ List<String> keys = new ArrayList<>(keySet.size());
Iterator<String> iter = keySet.iterator();
while (iter.hasNext()) {