/* * 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.ows.xml.v100; import java.util.ArrayList; import java.util.List; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.ows.xml.AbstractKeywords; /** * For OWS use, the optional thesaurusName element was omitted as being complex information that could be referenced by the codeSpace attribute of the Type element. * * <p>Java class for KeywordsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="KeywordsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Keyword" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * <element name="Type" type="{http://www.opengis.net/ows}CodeType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeywordsType", propOrder = { "keyword", "type" }) public class KeywordsType implements AbstractKeywords { @XmlElement(name = "Keyword", required = true) private List<String> keyword; @XmlElement(name = "Type") private CodeType type; /* * Empty constructor used by JAXB. */ KeywordsType(){ } /** * Build a new list of keywords. */ public KeywordsType(final List<String> keyword, final CodeType type){ this.keyword = keyword; this.type = type; } /** * Build a simple list of keywords without type. * all the element of the list are in the parameters. */ public KeywordsType(final String... keywords){ this.keyword = new ArrayList<String>(); for (String element: keywords){ keyword.add(element); } } /** * Gets the value of the keyword property. */ public List<String> getKeyword() { if (keyword == null) { keyword = new ArrayList<String>(); } return this.keyword; } public List<String> getKeywordList() { if (keyword == null) { keyword = new ArrayList<String>(); } return this.keyword; } /** * Gets the value of the type property. */ public CodeType getType() { return type; } /** * Verify that this entry is identical to the specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof KeywordsType) { final KeywordsType that = (KeywordsType) object; return Objects.equals(this.keyword, that.keyword) && Objects.equals(this.type, that.type); } return false; } @Override public int hashCode() { int hash = 3; hash = 97 * hash + (this.keyword != null ? this.keyword.hashCode() : 0); hash = 97 * hash + (this.type != null ? this.type.hashCode() : 0); return hash; } @Override public String toString() { StringBuilder s = new StringBuilder("[KeywordsType]\n"); if(type != null) { s.append("type:").append(type).append('\n'); } if (keyword != null) { s.append("keyword:").append('\n'); for (String k : keyword) { s.append(k).append('\n'); } } return s.toString(); } }