LOG121_TP01/src/model/metadata/FactoryOutput.java
2022-05-26 16:04:07 -04:00

38 lines
763 B
Java

package model.metadata;
import model.ComponentType;
import java.util.Objects;
public class FactoryOutput {
private final ComponentType type;
public FactoryOutput(ComponentType type) {
this.type = type;
}
public ComponentType getType() {
return type;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
FactoryOutput that = (FactoryOutput) o;
return type == that.type;
}
@Override
public int hashCode() {
return Objects.hash(type);
}
@Override
public String toString() {
return "FactoryOutput{" +
"type=" + type +
'}';
}
}