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

com.github.wnameless.math.NumberSystem Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
/**
 *
 * @author Wei-Ming Wu
 *
 *
 * Copyright 2015 Wei-Ming Wu
 *
 * Licensed 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 com.github.wnameless.math;

import java.util.List;

import com.google.common.collect.ImmutableList;

/**
 * 
 * {@link NumberSystem} provides all base digits in commonly used number
 * systems.
 * 
 */
public final class NumberSystem {

  /**
   * Binary number system.
   */
  public static final List BIN = ImmutableList.of('0', '1');

  /**
   * Octal number system.
   */
  public static final List OCT =
      ImmutableList.of('0', '1', '2', '3', '4', '5', '6', '7');

  /**
   * Decimal number system.
   */
  public static final List DEC =
      ImmutableList.of('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');

  /**
   * Hexical number system.
   */
  public static final List HEX = ImmutableList.of('0', '1', '2', '3',
      '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');

  /**
   * 36-based number system.
   */
  public static final List BASE_36 =
      ImmutableList.of('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A',
          'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
          'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');

  private NumberSystem() {}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy