DocumentID.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.contrib.index.mapred;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.io.Text;
  23. import org.apache.hadoop.io.WritableComparable;
  24. /**
  25.  * The class represents a document id, which is of type text.
  26.  */
  27. public class DocumentID implements WritableComparable {
  28.   private final Text docID;
  29.   /**
  30.    * Constructor.
  31.    */
  32.   public DocumentID() {
  33.     docID = new Text();
  34.   }
  35.   /**
  36.    * The text of the document id.
  37.    * @return the text
  38.    */
  39.   public Text getText() {
  40.     return docID;
  41.   }
  42.   /* (non-Javadoc)
  43.    * @see java.lang.Comparable#compareTo(java.lang.Object)
  44.    */
  45.   public int compareTo(Object obj) {
  46.     if (this == obj) {
  47.       return 0;
  48.     } else {
  49.       return docID.compareTo(((DocumentID) obj).docID);
  50.     }
  51.   }
  52.   /* (non-Javadoc)
  53.    * @see java.lang.Object#hashCode()
  54.    */
  55.   public int hashCode() {
  56.     return docID.hashCode();
  57.   }
  58.   /* (non-Javadoc)
  59.    * @see java.lang.Object#toString()
  60.    */
  61.   public String toString() {
  62.     return this.getClass().getName() + "[" + docID + "]";
  63.   }
  64.   /* (non-Javadoc)
  65.    * @see org.apache.hadoop.io.Writable#write(java.io.DataOutput)
  66.    */
  67.   public void write(DataOutput out) throws IOException {
  68.     throw new IOException(this.getClass().getName()
  69.         + ".write should never be called");
  70.   }
  71.   /* (non-Javadoc)
  72.    * @see org.apache.hadoop.io.Writable#readFields(java.io.DataInput)
  73.    */
  74.   public void readFields(DataInput in) throws IOException {
  75.     throw new IOException(this.getClass().getName()
  76.         + ".readFields should never be called");
  77.   }
  78. }