GtuTypeData.java
package org.opentrafficsim.road.network.sampling;
import org.opentrafficsim.core.gtu.GTUType;
import org.opentrafficsim.kpi.interfaces.GtuTypeDataInterface;
/**
* <p>
* Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
* <p>
* @version $Revision$, $LastChangedDate$, by $Author$, initial version 13 okt. 2016 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
*/
public class GtuTypeData implements GtuTypeDataInterface
{
/** Gtu type. */
private final GTUType gtuType;
/**
* @param gtuType gtu type
*/
public GtuTypeData(final GTUType gtuType)
{
super();
this.gtuType = gtuType;
}
/**
* @return gtuType.
*/
public final GTUType getGtuType()
{
return this.gtuType;
}
/** {@inheritDoc} */
@Override
public final int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + ((this.gtuType == null) ? 0 : this.gtuType.hashCode());
return result;
}
/** {@inheritDoc} */
@Override
public final boolean equals(final Object obj)
{
if (this == obj)
{
return true;
}
if (obj == null)
{
return false;
}
if (getClass() != obj.getClass())
{
return false;
}
GtuTypeData other = (GtuTypeData) obj;
if (this.gtuType == null)
{
if (other.gtuType != null)
{
return false;
}
}
else if (!this.gtuType.equals(other.gtuType))
{
return false;
}
return true;
}
/** {@inheritDoc} */
@Override
public final String toString()
{
return "GtuTypeData [gtuType=" + this.gtuType + "]";
}
}