public boolean equals()

in cloudwatch-controller/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/ScalingBehavior.java [56:70]


	public boolean equals(Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		
		ScalingBehavior that = (ScalingBehavior) o;
		Collections.<ScalingPolicy>sort(this.policies);
		Collections.<ScalingPolicy>sort(that.policies);
		return Objects.equals(this.policies, that.policies)
			&& Objects.equals(this.coolDown, that.coolDown);

	}