
io.gs2.enchant.model.BalanceParameterModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-sdk Show documentation
Show all versions of gs2-java-sdk Show documentation
Game Server Services SDK for Java
The newest version!
/*
* Copyright 2016 Game Server Services, 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://www.apache.org/licenses/LICENSE-2.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 io.gs2.enchant.model;
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.JsonNode;
import io.gs2.core.model.IModel;
@SuppressWarnings("serial")
@JsonIgnoreProperties(ignoreUnknown=true)
public class BalanceParameterModel implements IModel, Serializable, Comparable {
private String balanceParameterModelId;
private String name;
private String metadata;
private Long totalValue;
private String initialValueStrategy;
private List parameters;
public String getBalanceParameterModelId() {
return balanceParameterModelId;
}
public void setBalanceParameterModelId(String balanceParameterModelId) {
this.balanceParameterModelId = balanceParameterModelId;
}
public BalanceParameterModel withBalanceParameterModelId(String balanceParameterModelId) {
this.balanceParameterModelId = balanceParameterModelId;
return this;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public BalanceParameterModel withName(String name) {
this.name = name;
return this;
}
public String getMetadata() {
return metadata;
}
public void setMetadata(String metadata) {
this.metadata = metadata;
}
public BalanceParameterModel withMetadata(String metadata) {
this.metadata = metadata;
return this;
}
public Long getTotalValue() {
return totalValue;
}
public void setTotalValue(Long totalValue) {
this.totalValue = totalValue;
}
public BalanceParameterModel withTotalValue(Long totalValue) {
this.totalValue = totalValue;
return this;
}
public String getInitialValueStrategy() {
return initialValueStrategy;
}
public void setInitialValueStrategy(String initialValueStrategy) {
this.initialValueStrategy = initialValueStrategy;
}
public BalanceParameterModel withInitialValueStrategy(String initialValueStrategy) {
this.initialValueStrategy = initialValueStrategy;
return this;
}
public List getParameters() {
return parameters;
}
public void setParameters(List parameters) {
this.parameters = parameters;
}
public BalanceParameterModel withParameters(List parameters) {
this.parameters = parameters;
return this;
}
public static BalanceParameterModel fromJson(JsonNode data) {
if (data == null) {
return null;
}
return new BalanceParameterModel()
.withBalanceParameterModelId(data.get("balanceParameterModelId") == null || data.get("balanceParameterModelId").isNull() ? null : data.get("balanceParameterModelId").asText())
.withName(data.get("name") == null || data.get("name").isNull() ? null : data.get("name").asText())
.withMetadata(data.get("metadata") == null || data.get("metadata").isNull() ? null : data.get("metadata").asText())
.withTotalValue(data.get("totalValue") == null || data.get("totalValue").isNull() ? null : data.get("totalValue").longValue())
.withInitialValueStrategy(data.get("initialValueStrategy") == null || data.get("initialValueStrategy").isNull() ? null : data.get("initialValueStrategy").asText())
.withParameters(data.get("parameters") == null || data.get("parameters").isNull() ? new ArrayList() :
StreamSupport.stream(Spliterators.spliteratorUnknownSize(data.get("parameters").elements(), Spliterator.NONNULL), false).map(item -> {
//noinspection Convert2MethodRef
return BalanceParameterValueModel.fromJson(item);
}
).collect(Collectors.toList()));
}
public JsonNode toJson() {
return new ObjectMapper().valueToTree(
new HashMap() {{
put("balanceParameterModelId", getBalanceParameterModelId());
put("name", getName());
put("metadata", getMetadata());
put("totalValue", getTotalValue());
put("initialValueStrategy", getInitialValueStrategy());
put("parameters", getParameters() == null ? new ArrayList() :
getParameters().stream().map(item -> {
//noinspection Convert2MethodRef
return item.toJson();
}
).collect(Collectors.toList()));
}}
);
}
@Override
public int compareTo(BalanceParameterModel o) {
return balanceParameterModelId.compareTo(o.balanceParameterModelId);
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.balanceParameterModelId == null) ? 0 : this.balanceParameterModelId.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.metadata == null) ? 0 : this.metadata.hashCode());
result = prime * result + ((this.totalValue == null) ? 0 : this.totalValue.hashCode());
result = prime * result + ((this.initialValueStrategy == null) ? 0 : this.initialValueStrategy.hashCode());
result = prime * result + ((this.parameters == null) ? 0 : this.parameters.hashCode());
return result;
}
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null)
return false;
if (getClass() != o.getClass())
return false;
BalanceParameterModel other = (BalanceParameterModel) o;
if (balanceParameterModelId == null) {
return other.balanceParameterModelId == null;
} else if (!balanceParameterModelId.equals(other.balanceParameterModelId)) {
return false;
}
if (name == null) {
return other.name == null;
} else if (!name.equals(other.name)) {
return false;
}
if (metadata == null) {
return other.metadata == null;
} else if (!metadata.equals(other.metadata)) {
return false;
}
if (totalValue == null) {
return other.totalValue == null;
} else if (!totalValue.equals(other.totalValue)) {
return false;
}
if (initialValueStrategy == null) {
return other.initialValueStrategy == null;
} else if (!initialValueStrategy.equals(other.initialValueStrategy)) {
return false;
}
if (parameters == null) {
return other.parameters == null;
} else if (!parameters.equals(other.parameters)) {
return false;
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy