com.github.wnameless.math.NumberSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of number-system-converter Show documentation
Show all versions of number-system-converter Show documentation
An Java utility library of number systems(math)
The 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