Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static byte toByte(String value) {
        return Integer.decode(value).byteValue();
    }

    public static byte toByte(int value) {
        return (byte) value;
    }
}