java/dictionary-generator/src/cz/frantovo/telco/dictionary/SynonymsEntry.java
author František Kučera <franta-hg@frantovo.cz>
Mon, 19 Aug 2013 17:20:27 +0200
changeset 115 8430ee5644c2
parent 17 b188eae2c092
child 130 b8dc8a6f82cf
permissions -rw-r--r--
data: FXS improved
     1 /**
     2  * Free Telco Dictionary
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package cz.frantovo.telco.dictionary;
    19 
    20 import java.io.DataOutputStream;
    21 import java.io.IOException;
    22 import java.nio.charset.StandardCharsets;
    23 import java.util.Objects;
    24 
    25 /**
    26  *
    27  * @author Ing. František Kučera (frantovo.cz)
    28  */
    29 public class SynonymsEntry implements Comparable<SynonymsEntry> {
    30 
    31 	private IndexEntry base;
    32 	private String name;
    33 
    34 	public SynonymsEntry(IndexEntry base, String name) {
    35 		this.base = base;
    36 		this.name = name;
    37 	}
    38 
    39 	public void serialize(DataOutputStream synonymOutputStream) throws IOException {
    40 		synonymOutputStream.write(name.getBytes(StandardCharsets.UTF_8));
    41 		synonymOutputStream.write(0);
    42 		synonymOutputStream.writeInt((int) base.getOrdinal()); // unsigned int 32
    43 	}
    44 
    45 	@Override
    46 	public int compareTo(SynonymsEntry o) {
    47 		int nameDiff = name.compareTo(o.name);
    48 		if (nameDiff == 0) {
    49 			return base.compareTo(o.base);
    50 		} else {
    51 			return nameDiff;
    52 		}
    53 	}
    54 
    55 	@Override
    56 	public boolean equals(Object o) {
    57 		return o instanceof IndexEntry && compareTo((SynonymsEntry) o) == 0;
    58 	}
    59 
    60 	@Override
    61 	public int hashCode() {
    62 		int hash = 3;
    63 		hash = 47 * hash + Objects.hashCode(this.base);
    64 		hash = 47 * hash + Objects.hashCode(this.name);
    65 		return hash;
    66 	}
    67 }