/* * Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.geo.model; import java.io.Serializable; /** *

* Contains details about additional route preferences for requests that specify * TravelMode as Car. *

*/ public class CalculateRouteCarModeOptions implements Serializable { /** *

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ private Boolean avoidFerries; /** *

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ private Boolean avoidTolls; /** *

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @return

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public Boolean isAvoidFerries() { return avoidFerries; } /** *

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @return

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public Boolean getAvoidFerries() { return avoidFerries; } /** *

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @param avoidFerries

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public void setAvoidFerries(Boolean avoidFerries) { this.avoidFerries = avoidFerries; } /** *

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param avoidFerries

* Avoids ferries when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* @return A reference to this updated object so that method calls can be * chained together. */ public CalculateRouteCarModeOptions withAvoidFerries(Boolean avoidFerries) { this.avoidFerries = avoidFerries; return this; } /** *

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @return

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public Boolean isAvoidTolls() { return avoidTolls; } /** *

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @return

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public Boolean getAvoidTolls() { return avoidTolls; } /** *

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* * @param avoidTolls

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*/ public void setAvoidTolls(Boolean avoidTolls) { this.avoidTolls = avoidTolls; } /** *

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param avoidTolls

* Avoids tolls when calculating routes. *

*

* Default Value: false *

*

* Valid Values: false | true *

* @return A reference to this updated object so that method calls can be * chained together. */ public CalculateRouteCarModeOptions withAvoidTolls(Boolean avoidTolls) { this.avoidTolls = avoidTolls; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAvoidFerries() != null) sb.append("AvoidFerries: " + getAvoidFerries() + ","); if (getAvoidTolls() != null) sb.append("AvoidTolls: " + getAvoidTolls()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAvoidFerries() == null) ? 0 : getAvoidFerries().hashCode()); hashCode = prime * hashCode + ((getAvoidTolls() == null) ? 0 : getAvoidTolls().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CalculateRouteCarModeOptions == false) return false; CalculateRouteCarModeOptions other = (CalculateRouteCarModeOptions) obj; if (other.getAvoidFerries() == null ^ this.getAvoidFerries() == null) return false; if (other.getAvoidFerries() != null && other.getAvoidFerries().equals(this.getAvoidFerries()) == false) return false; if (other.getAvoidTolls() == null ^ this.getAvoidTolls() == null) return false; if (other.getAvoidTolls() != null && other.getAvoidTolls().equals(this.getAvoidTolls()) == false) return false; return true; } }