/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.style; import java.util.Objects; import javax.measure.Unit; import org.apache.sis.util.Classes; import org.opengis.filter.expression.Expression; import org.opengis.style.Description; import org.opengis.style.Displacement; import org.opengis.style.Fill; import org.opengis.style.PolygonSymbolizer; import org.opengis.style.Stroke; import org.opengis.style.StyleVisitor; import static org.geotoolkit.style.StyleConstants.*; /** * Immutable implementation of Types Polygon symbolizer. * * @author Johann Sorel (Geomatys) * @module */ public class DefaultPolygonSymbolizer extends AbstractSymbolizer implements PolygonSymbolizer{ private final Stroke stroke; private final Fill fill; private final Displacement disp; private final Expression offset; /** * Create a default immutable polygon symbolizer. * * @param stroke : can be null * @param fill : can be null. * @param disp : if null will be replaced by default value. * @param offset : if null or Expression.NIL will be replaced by default value. * @param uom : if null will be replaced by default value. * @param geom : can be null * @param name : can be null * @param desc : if null will be replaced by default description. */ public DefaultPolygonSymbolizer(final Stroke stroke, final Fill fill, final Displacement disp, final Expression offset, final Unit uom, final Expression geom, final String name, final Description desc){ super(uom,geom,name,desc); this.stroke = stroke; this.fill = fill; this.disp = (disp == null) ? DEFAULT_DISPLACEMENT : disp; this.offset = (offset == null) ? DEFAULT_POLYGON_OFFSET : offset; } /** * {@inheritDoc } */ @Override public Stroke getStroke() { return stroke; } /** * {@inheritDoc } */ @Override public Fill getFill() { return fill; } /** * {@inheritDoc } */ @Override public Displacement getDisplacement() { return disp; } /** * {@inheritDoc } */ @Override public Expression getPerpendicularOffset() { return offset; } /** * {@inheritDoc } */ @Override public Object accept(final StyleVisitor visitor, final Object extraData) { return visitor.visit(this,extraData); } /** * {@inheritDoc } */ @Override public boolean equals(final Object obj) { if(this == obj){ return true; } if(obj == null || !this.getClass().equals(obj.getClass()) ){ return false; } DefaultPolygonSymbolizer other = (DefaultPolygonSymbolizer) obj; return Objects.equals(this.fill, other.fill) && this.disp.equals(other.disp) && this.desc.equals(other.desc) && this.offset.equals(other.offset) && this.uom.equals(other.uom) && Objects.equals(this.stroke, other.stroke) && Objects.equals(this.geom, other.geom) && Objects.equals(this.name, other.name); } /** * {@inheritDoc } */ @Override public int hashCode() { int hash = 0; hash *= disp.hashCode(); hash *= offset.hashCode(); hash *= uom.hashCode(); hash *= desc.hashCode(); if(fill != null) hash *= fill.hashCode(); if(stroke != null) hash *= stroke.hashCode(); if(geom != null) hash *= geom.hashCode(); if(name != null) hash *= name.hashCode(); return hash; } /** * {@inheritDoc } */ @Override public String toString() { final StringBuilder builder = new StringBuilder(); builder.append("Polygon Symbolizer : "); builder.append(Classes.getShortClassName(this)); builder.append(" ["); builder.append(" Offset="); builder.append(offset); builder.append(" Disp="); builder.append(disp); builder.append(" Unit="); builder.append(uom); if(geom != null){ builder.append(" Geometry="); builder.append(geom); } builder.append(']'); if(fill != null){ builder.append('\n'); String sub = "\u2514\u2500\u2500" + fill.toString(); //move text to the right sub = sub.replaceAll("\n", "\n\u00A0\u00A0\u00A0"); //move text to the right builder.append(sub); } if(stroke != null){ builder.append('\n'); String sub = "\u2514\u2500\u2500" + stroke.toString(); //move text to the right sub = sub.replaceAll("\n", "\n\u00A0\u00A0\u00A0"); //move text to the right builder.append(sub); } return builder.toString(); } }