All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bbottema.javareflection.util.graph.Node Maven / Gradle / Ivy

package org.bbottema.javareflection.util.graph;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NonNull;
import lombok.ToString;

import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;

@Data
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
@ToString(onlyExplicitlyIncluded = true)
@SuppressFBWarnings(justification = "Generated code")
public class Node {
	@NonNull
	@EqualsAndHashCode.Include
	@ToString.Include
	private final T type;
	private final Map, Integer> toNodes = new HashMap<>();
	private LinkedList> leastExpensivePath = new LinkedList<>();
	private Integer cost = Integer.MAX_VALUE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy