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

org.apache.hadoop.hdfs.util.ConstEnumCounters Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.hadoop.hdfs.util;

/**
 * Const Counters for an enum type.
 *
 * It's the const version of EnumCounters. Any modification ends with a
 * ConstEnumException.
 *
 * @see org.apache.hadoop.hdfs.util.EnumCounters
 */
public class ConstEnumCounters> extends EnumCounters {

  /**
   * An exception class for modification on ConstEnumCounters.
   */
  public static final class ConstEnumException extends RuntimeException {
    private ConstEnumException(String msg) {
      super(msg);
    }
  }

  /**
   * Throwing this exception if any modification occurs.
   */
  private static final ConstEnumException CONST_ENUM_EXCEPTION =
      new ConstEnumException("modification on const.");

  public ConstEnumCounters(Class enumClass, long defaultVal) {
    super(enumClass);
    forceReset(defaultVal);
  }

  @Override
  public final void negation() {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void set(final E e, final long value) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void set(final EnumCounters that) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void reset() {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void add(final E e, final long value) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void add(final EnumCounters that) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void subtract(final E e, final long value) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void subtract(final EnumCounters that) {
    throw CONST_ENUM_EXCEPTION;
  }

  @Override
  public final void reset(long val) {
    throw CONST_ENUM_EXCEPTION;
  }

  private void forceReset(long val) {
    super.reset(val);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy