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

网格计算

开发平台:

Java

  1. /*
  2.  * MetricValue.java
  3.  *
  4.  * Licensed to the Apache Software Foundation (ASF) under one
  5.  * or more contributor license agreements.  See the NOTICE file
  6.  * distributed with this work for additional information
  7.  * regarding copyright ownership.  The ASF licenses this file
  8.  * to you under the Apache License, Version 2.0 (the
  9.  * "License"); you may not use this file except in compliance
  10.  * with the License.  You may obtain a copy of the License at
  11.  *
  12.  *     http://www.apache.org/licenses/LICENSE-2.0
  13.  *
  14.  * Unless required by applicable law or agreed to in writing, software
  15.  * distributed under the License is distributed on an "AS IS" BASIS,
  16.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17.  * See the License for the specific language governing permissions and
  18.  * limitations under the License.
  19.  */
  20. package org.apache.hadoop.metrics.spi;
  21. /**
  22.  * A Number that is either an absolute or an incremental amount.
  23.  */
  24. public class MetricValue {
  25.     
  26.   public static final boolean ABSOLUTE = false;
  27.   public static final boolean INCREMENT = true;
  28.     
  29.   private boolean isIncrement;
  30.   private Number number;
  31.     
  32.   /** Creates a new instance of MetricValue */
  33.   public MetricValue(Number number, boolean isIncrement) {
  34.     this.number = number;
  35.     this.isIncrement = isIncrement;
  36.   }
  37.   public boolean isIncrement() {
  38.     return isIncrement;
  39.   }
  40.     
  41.   public boolean isAbsolute() {
  42.     return !isIncrement;
  43.   }
  44.   public Number getNumber() {
  45.     return number;
  46.   }
  47.     
  48. }