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

网格计算

开发平台:

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.example;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.IOException;
  22. import org.apache.hadoop.contrib.index.mapred.DocumentAndOp;
  23. import org.apache.hadoop.io.Text;
  24. import org.apache.hadoop.io.Writable;
  25. /**
  26.  * This class represents an operation. The operation can be an insert, a delete
  27.  * or an update. If the operation is an insert or an update, a (new) document,
  28.  * which is in the form of text, is specified.
  29.  */
  30. public class LineDocTextAndOp implements Writable {
  31.   private DocumentAndOp.Op op;
  32.   private Text doc;
  33.   /**
  34.    * Constructor
  35.    */
  36.   public LineDocTextAndOp() {
  37.     doc = new Text();
  38.   }
  39.   /**
  40.    * Set the type of the operation.
  41.    * @param op  the type of the operation
  42.    */
  43.   public void setOp(DocumentAndOp.Op op) {
  44.     this.op = op;
  45.   }
  46.   /**
  47.    * Get the type of the operation.
  48.    * @return the type of the operation
  49.    */
  50.   public DocumentAndOp.Op getOp() {
  51.     return op;
  52.   }
  53.   /**
  54.    * Get the text that represents a document.
  55.    * @return the text that represents a document
  56.    */
  57.   public Text getText() {
  58.     return doc;
  59.   }
  60.   /* (non-Javadoc)
  61.    * @see java.lang.Object#toString()
  62.    */
  63.   public String toString() {
  64.     return this.getClass().getName() + "[op=" + op + ", text=" + doc + "]";
  65.   }
  66.   /* (non-Javadoc)
  67.    * @see org.apache.hadoop.io.Writable#write(java.io.DataOutput)
  68.    */
  69.   public void write(DataOutput out) throws IOException {
  70.     throw new IOException(this.getClass().getName()
  71.         + ".write should never be called");
  72.   }
  73.   /* (non-Javadoc)
  74.    * @see org.apache.hadoop.io.Writable#readFields(java.io.DataInput)
  75.    */
  76.   public void readFields(DataInput in) throws IOException {
  77.     throw new IOException(this.getClass().getName()
  78.         + ".readFields should never be called");
  79.   }
  80. }