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

com.github.myibu.algorithm.data.Bit Maven / Gradle / Ivy

package com.github.myibu.algorithm.data;
/**
 * Bit enum
 * @author myibu
 * Created on 2021/9/14
 */
public enum Bit {
    /**
     * 0
     */
    ZERO(0),
    /**
     * 1
     */
    ONE(1);
    final int value;

    Bit(int value) {
        this.value = value;
    }

    public int value() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy