FloatWritable.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.io;
  19. import java.io.*;
  20. /** A WritableComparable for floats. */
  21. public class FloatWritable implements WritableComparable {
  22.   private float value;
  23.   public FloatWritable() {}
  24.   public FloatWritable(float value) { set(value); }
  25.   /** Set the value of this FloatWritable. */
  26.   public void set(float value) { this.value = value; }
  27.   /** Return the value of this FloatWritable. */
  28.   public float get() { return value; }
  29.   public void readFields(DataInput in) throws IOException {
  30.     value = in.readFloat();
  31.   }
  32.   public void write(DataOutput out) throws IOException {
  33.     out.writeFloat(value);
  34.   }
  35.   /** Returns true iff <code>o</code> is a FloatWritable with the same value. */
  36.   public boolean equals(Object o) {
  37.     if (!(o instanceof FloatWritable))
  38.       return false;
  39.     FloatWritable other = (FloatWritable)o;
  40.     return this.value == other.value;
  41.   }
  42.   public int hashCode() {
  43.     return Float.floatToIntBits(value);
  44.   }
  45.   /** Compares two FloatWritables. */
  46.   public int compareTo(Object o) {
  47.     float thisValue = this.value;
  48.     float thatValue = ((FloatWritable)o).value;
  49.     return (thisValue<thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
  50.   }
  51.   public String toString() {
  52.     return Float.toString(value);
  53.   }
  54.   /** A Comparator optimized for FloatWritable. */ 
  55.   public static class Comparator extends WritableComparator {
  56.     public Comparator() {
  57.       super(FloatWritable.class);
  58.     }
  59.     public int compare(byte[] b1, int s1, int l1,
  60.                        byte[] b2, int s2, int l2) {
  61.       float thisValue = readFloat(b1, s1);
  62.       float thatValue = readFloat(b2, s2);
  63.       return (thisValue<thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
  64.     }
  65.   }
  66.   static {                                        // register this comparator
  67.     WritableComparator.define(FloatWritable.class, new Comparator());
  68.   }
  69. }