📄 operator.java
字号:
/* * $Id: Operator.java 8077 2007-08-27 20:15:25Z aperepel $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.util.counters.impl;import org.mule.util.counters.Counter;import org.mule.util.counters.CounterFactory.Type;public class Operator extends AggregateCounter{ private final Counter base2; private double val1; private double val2; public Operator(String name, AbstractCounter base, AbstractCounter base2, Type type) { super(name, type, base); this.base2 = base2; base2.addAggregate(this); } public double nextValue() { Type type = this.getType(); if (type == Type.PLUS) { return val1 + val2; } else if (type == Type.MINUS) { return val1 - val2; } else if (type == Type.MULTIPLY) { return val1 * val2; } else if (type == Type.DIVIDE) { return val2 == 0.0 ? (val1 >= 0 ? Double.POSITIVE_INFINITY : Double.NEGATIVE_INFINITY) : (val1 / val2); } else { throw new IllegalStateException(); } } public void doCompute() { this.val1 = this.getBase().nextValue(); this.val2 = base2.nextValue(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -