Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String hexify(byte inByte, boolean inCase) {
        return hexify((inByte & 0x00FF), inCase);
    }

    public static String hexify(int inInteger, boolean inCase) {
        return Integer.toHexString(inInteger);
    }
}