2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * Modifications Copyright (C) 2019 Nordix Foundation.
5 * ================================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.context.test.concepts;
24 import java.io.Serializable;
27 * The Class TestContextItem004.
29 public class TestContextFloatItem implements Serializable {
30 private static final long serialVersionUID = -3359180576903272400L;
32 private static final int HASH_PRIME_1 = 31;
34 private float floatValue = 0;
39 public TestContextFloatItem() {}
44 * @param floatValue the float value
46 public TestContextFloatItem(final Float floatValue) {
47 this.floatValue = floatValue;
51 * Gets the float value.
53 * @return the float value
55 public float getFloatValue() {
60 * Sets the float value.
62 * @param floatValue the float value
64 public void setFloatValue(final float floatValue) {
65 this.floatValue = floatValue;
71 * @see java.lang.Object#hashCode()
74 public int hashCode() {
75 final int prime = HASH_PRIME_1;
77 result = prime * result + Float.floatToIntBits(floatValue);
84 * @see java.lang.Object#equals(java.lang.Object)
87 public boolean equals(final Object obj) {
94 if (getClass() != obj.getClass()) {
97 final TestContextFloatItem other = (TestContextFloatItem) obj;
98 return Float.floatToIntBits(floatValue) == Float.floatToIntBits(other.floatValue);
104 * @see java.lang.Object#toString()
107 public String toString() {
108 return "TestContextItem004 [floatValue=" + floatValue + "]";