Java tutorial
/* * Copyright (c) 2016. SmartHMA ESA * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License 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 pl.wasat.smarthma.model.om; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import java.io.Serializable; import pl.wasat.smarthma.utils.text.SmartHMAStringStyle; /** * Created by Daniel on 2016-05-20. * This file is a part of module SmartHMA project. */ public class GeometryMembers implements Serializable { private static final long serialVersionUID = 1L; private LineString lineString; private String Prefix; /** * Gets line string. * * @return The lineString */ public LineString getLineString() { return lineString; } /** * Sets line string. * * @param LineString The lineString */ public void setLineString(LineString LineString) { this.lineString = LineString; } /** * Gets prefix. * * @return The Prefix */ public String getPrefix() { return Prefix; } /** * Sets prefix. * * @param Prefix The __prefix */ public void setPrefix(String Prefix) { this.Prefix = Prefix; } @Override public String toString() { ToStringStyle style = new SmartHMAStringStyle(); ToStringBuilder.setDefaultStyle(style); return ToStringBuilder.reflectionToString(this, style); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") @Override public boolean equals(Object other) { return EqualsBuilder.reflectionEquals(this, other); } }