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

com.global.api.network.enums.CharacterSet Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.network.enums;

import com.global.api.entities.enums.IByteConstant;

public enum CharacterSet implements IByteConstant {
    ASCII (0x01),
    EBCDIC (0x02);

    private final byte value;
    CharacterSet(int value) { this.value = (byte)value; }
    public byte getByte() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy