All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaoleilu.hutool.mutable.MutableFloat Maven / Gradle / Ivy

package com.xiaoleilu.hutool.mutable;

import com.xiaoleilu.hutool.util.NumberUtil;

/**
 * 可变 float 类型
 * 
 * @see Float
 * @since 3.0.1
 */
public class MutableFloat extends Number implements Comparable, Mutable {
	private static final long serialVersionUID = -7381592836008495052L;
	
	private float value;

	/**
	 * 构造,默认值0
	 */
	public MutableFloat() {
		super();
	}

	/**
	 * 构造
	 * @param value 值
	 */
	public MutableFloat(final float value) {
		super();
		this.value = value;
	}

	/**
	 * 构造
	 * @param value 值
	 */
	public MutableFloat(final Number value) {
		this(value.floatValue());
	}

	/**
	 * 构造
	 * @param value String值
	 * @throws NumberFormatException 数字转换错误
	 */
	public MutableFloat(final String value) throws NumberFormatException {
		super();
		this.value = Float.parseFloat(value);
	}

	@Override
	public Float get() {
		return Float.valueOf(this.value);
	}

	/**
	 * 设置值
	 * @param value 值
	 */
	public void set(final float value) {
		this.value = value;
	}

	@Override
	public void set(final Number value) {
		this.value = value.floatValue();
	}

	// -----------------------------------------------------------------------
	/**
	 * 值+1
	 * @return this
	 */
	public MutableFloat increment() {
		value++;
		return this;
	}

	/**
	 * 值减一
	 * @return this
	 */
	public MutableFloat decrement() {
		value--;
		return this;
	}

	// -----------------------------------------------------------------------
	/**
	 * 增加值
	 * @param operand 被增加的值
	 * @return this
	 */
	public MutableFloat add(final float operand) {
		this.value += operand;
		return this;
	}

	/**
	 * 增加值
	 * @param operand 被增加的值,非空
	 * @return this
	 * @throws NullPointerException if the object is null
	 */
	public MutableFloat add(final Number operand) {
		this.value += operand.floatValue();
		return this;
	}

	/**
	 * 减去值
	 * 
	 * @param operand 被减的值
	 * @return this
	 */
	public MutableFloat subtract(final float operand) {
		this.value -= operand;
		return this;
	}

	/**
	 * 减去值
	 * 
	 * @param operand 被减的值,非空
	 * @return this
	 * @throws NullPointerException if the object is null
	 */
	public MutableFloat subtract(final Number operand) {
		this.value -= operand.floatValue();
		return this;
	}

	// -----------------------------------------------------------------------
	@Override
	public int intValue() {
		return (int) value;
	}

	@Override
	public long longValue() {
		return (long) value;
	}

	@Override
	public float floatValue() {
		return value;
	}

	@Override
	public double doubleValue() {
		return value;
	}

	// -----------------------------------------------------------------------
	/**
	 * 相等需同时满足如下条件:
	 * 
    *
  1. 非空
  2. *
  3. 类型为 {@link MutableFloat}
  4. *
  5. 值相等
  6. *
* * @param obj 比对的对象 * @return 相同返回true,否则 false */ @Override public boolean equals(final Object obj) { if (obj instanceof MutableFloat) { return (Float.floatToIntBits(((MutableFloat)obj).value) == Float.floatToIntBits(value)); } return false; } @Override public int hashCode() { return Float.floatToIntBits(value); } // ----------------------------------------------------------------------- /** * 比较 * * @param other 其它 {@link MutableFloat} 对象 * @return x==y返回0,x<y返回-1,x>y返回1 */ @Override public int compareTo(final MutableFloat other) { return NumberUtil.compare(this.value, other.value); } // ----------------------------------------------------------------------- @Override public String toString() { return String.valueOf(value); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy