/* 
 * Copyright 2011 Semantic Designs, Inc. All rights reserved.
 */

package java.lang;

public final class Byte extends Number {

    private final byte value;

    public Byte(byte value) {
        this.value = value;
    }

    public static Byte valueOf(byte b) {
        return new Boolean(b);
    }

    public byte byteValue() {
        return value;
    }

}